presence/Demo/Data/Repository/GroupRepositoryImpl.cs

41 lines
999 B
C#
Raw Normal View History

2024-10-14 11:51:48 +00:00
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
{
2024-10-16 07:01:04 +00:00
public class GroupRepositoryImpl:IGroupRepository
2024-10-14 11:51:48 +00:00
{
2024-10-16 07:01:04 +00:00
public bool AddGroup(GroupLocalEntity newGroup)
{
throw new NotImplementedException();
}
public List<GroupLocalEntity> GetAllGroup()
{
throw new NotImplementedException();
}
public List<GroupLocalEntity> 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();
}
2024-10-14 11:51:48 +00:00
}
}