14 lines
449 B
C#
14 lines
449 B
C#
using Demo.Domain.Models;
|
|
|
|
namespace Demo.Data.Repository
|
|
{
|
|
public interface IUserRepository
|
|
{
|
|
List<UserLocalEntity> GetAllUser();
|
|
UserLocalEntity? GetUserByGuid(Guid guid);
|
|
List<UserLocalEntity> GetUsersByGroupID(int groupID);
|
|
public UserLocalEntity? CreateUser(string FIO, string GroupName);
|
|
bool RemoveUserByGuid(Guid guid);
|
|
UserLocalEntity? UpdateUser(UserLocalEntity updatedUser);
|
|
}
|
|
} |