16 lines
359 B
C#
16 lines
359 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using RIZO.Client.Entity;
|
|||
|
|
|
|||
|
|
namespace RIZO.Client.IBLL
|
|||
|
|
{
|
|||
|
|
public interface IUserBLL
|
|||
|
|
{
|
|||
|
|
Task<List<UserEntity>> GetAll();
|
|||
|
|
Task<List<RoleEntity>> GetRolesByUserId(int userId);
|
|||
|
|
Task ResetPassword(string userId);
|
|||
|
|
|
|||
|
|
Task SaveUser(UserEntity userEntity);
|
|||
|
|
}
|
|||
|
|
}
|