19 lines
500 B
C#
19 lines
500 B
C#
|
using Demo.domain.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Zurnal.Date.Repository
|
|||
|
{
|
|||
|
internal interface IGroupRepository
|
|||
|
{
|
|||
|
List<GroupLocalEntity> GetAllGroup();
|
|||
|
bool RemoveGroupById(int groupID);
|
|||
|
bool UpdateGroupById(int groupID, GroupLocalEntity updatedGroup);
|
|||
|
GroupLocalEntity GetGroupById(int groupID);
|
|||
|
bool AddGroup(GroupLocalEntity newGroup);
|
|||
|
}
|
|||
|
}
|