2024-10-21 09:38:07 +00:00
|
|
|
using Demo.Domain.Models;
|
|
|
|
|
|
|
|
namespace Demo.Data.Repository
|
|
|
|
{
|
|
|
|
public interface IUserRepository
|
|
|
|
{
|
|
|
|
List<UserLocalEntity> GetAllUser();
|
2024-10-24 15:57:52 +00:00
|
|
|
UserLocalEntity? GetUserByGuid(Guid guid);
|
|
|
|
bool RemoveUserByGuid(Guid guid);
|
|
|
|
UserLocalEntity? UpdateUser(UserLocalEntity updatedUser);
|
2024-10-21 09:38:07 +00:00
|
|
|
}
|
|
|
|
}
|