12 lines
313 B
C#
12 lines
313 B
C#
using Demo.Domain.Models;
|
|
|
|
namespace Demo.Data.Repository
|
|
{
|
|
public interface IUserRepository
|
|
{
|
|
List<UserLocalEntity> GetAllUser();
|
|
UserLocalEntity? GetUserByGuid(Guid guid);
|
|
bool RemoveUserByGuid(Guid guid);
|
|
UserLocalEntity? UpdateUser(UserLocalEntity updatedUser);
|
|
}
|
|
} |