using Demo.Data.LocalData; using Demo.domain.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Demo.Data.Repository { public class GroupRepositoryImpl:IGroupRepository { public bool AddGroup(GroupLocalEntity newGroup) { throw new NotImplementedException(); } public List GetAllGroup() { throw new NotImplementedException(); } public List GetAllGroups() => LocalStaticData.groups; public GroupLocalEntity GetGroupById(int groupID) { throw new NotImplementedException(); } public bool RemoveGroupById(int groupID) { throw new NotImplementedException(); } public bool UpdateGroupById(int groupID, GroupLocalEntity updatedGroup) { throw new NotImplementedException(); } } }