You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
using CoviDok.BLL;
|
|
using CoviDok.BLL.User.Managers;
|
|
using CoviDok.Data.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CoviDok.Data.MySQL
|
|
{
|
|
public class MySqlChildHandler : IChildHandler
|
|
{
|
|
private readonly MySqlContext context = new MySqlContext();
|
|
public async Task<int> AddChild(Child child)
|
|
{
|
|
context.Children.Add(child);
|
|
await context.SaveChangesAsync();
|
|
return child.Id;
|
|
}
|
|
|
|
public async Task<Child> GetChild(int id)
|
|
{
|
|
return await context.Children.FindAsync(id);
|
|
}
|
|
|
|
public List<Child> GetChildren(int parentId)
|
|
{
|
|
return (from c in context.Children where c.ParentId == parentId select c).ToList();
|
|
}
|
|
|
|
public async Task UpdateChild(int id, Child newData)
|
|
{
|
|
Child child = await context.Children.FindAsync(id);
|
|
context.Entry(child).State = Microsoft.EntityFrameworkCore.EntityState.Modified;
|
|
PropertyCopier<Child>.Copy(newData, child);
|
|
await context.SaveChangesAsync();
|
|
}
|
|
}
|
|
}
|
|
|