14 lines
396 B
C#
14 lines
396 B
C#
|
using Demo.Data.Entity;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Demo.Data.Repository
|
|||
|
{
|
|||
|
public interface IUserRepository
|
|||
|
{
|
|||
|
bool AddUser(UserLocalEnity newUser);
|
|||
|
List<UserLocalEnity> GetAllUsers();
|
|||
|
UserLocalEnity GetUserById(Guid userID);
|
|||
|
bool RemoveUserById(Guid userID);
|
|||
|
bool UpdateUserById(Guid userID, UserLocalEnity updatedUser);
|
|||
|
}
|
|||
|
}
|