18 lines
462 B
C#
18 lines
462 B
C#
|
using Demo.Data.RemoteData.RemoteDataBase.DAO;
|
|||
|
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 interface IGroupRepository
|
|||
|
{
|
|||
|
List<GroupDao> GetAllGroups();
|
|||
|
bool UpdateGroupById(int groupID, GroupDao updatedGroup);
|
|||
|
GroupDao GetGroupById(int groupID);
|
|||
|
bool AddGroup(string Name);
|
|||
|
}
|
|||
|
}
|