presenceNikita/Demo/Data/Repository/GroupRepositoryImpl.cs

42 lines
1.0 KiB
C#
Raw Permalink Normal View History

2024-10-16 08:22:40 +00:00
using Demo.Data.LocalData;
using Demo.domain.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2024-10-21 08:46:20 +00:00
using System.Text.RegularExpressions;
2024-10-16 08:22:40 +00:00
using System.Threading.Tasks;
namespace Demo.Data.Repository
{
2024-10-21 08:46:20 +00:00
public class GroupRepositoryImpl : IGroupRepository
2024-10-16 08:22:40 +00:00
{
2024-10-21 08:46:20 +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-16 08:22:40 +00:00
}
}