14 lines
290 B
C#
14 lines
290 B
C#
using System.Collections.Generic;
|
|
using RIZO.Server.Models;
|
|
|
|
namespace RIZO.Server.IService
|
|
{
|
|
public interface IUserService : IServiceBase
|
|
{
|
|
List<RoleInfo> GetRolesByUserId(int userId);
|
|
void ResetPassword(int userId);
|
|
|
|
void SaveUser(string data);
|
|
}
|
|
}
|