slarny4/Demo1/Data/Repository/IGroupRepository.cs

13 lines
333 B
C#
Raw Normal View History

2024-11-25 04:33:26 +00:00
using Demo.Data.RemoteData.RemoteDataBase.DAO;
2024-10-28 12:42:04 +00:00
using System.Collections.Generic;
2024-10-24 08:50:32 +00:00
2024-10-28 12:42:04 +00:00
namespace Demo.Data.Repository
2024-10-24 08:50:32 +00:00
{
public interface IGroupRepository
{
IEnumerable<Group> GetAllGroups();
void AddGroup(Group group);
2024-11-25 04:33:26 +00:00
void UpdateGroupName(int id, string name);
2024-10-24 08:50:32 +00:00
void DeleteGroup(int id);
}
}