using DbContextLib; using DTO; using Modele; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ModeleToDTO { public class GroupDataManager(LibraryContext _context) : IModele2DTO { public Task Add(Group group) { throw new NotImplementedException(); } public Task Delete(int id) { throw new NotImplementedException(); } public Task GetById(int id) { throw new NotImplementedException(); } public Task> Gets() { throw new NotImplementedException(); } public Task Update(Group group) { throw new NotImplementedException(); } } }