using System.Collections.Generic; using RIZO.Server.Models; namespace RIZO.Server.IService { public interface IUserService : IServiceBase { List GetRolesByUserId(int userId); void ResetPassword(int userId); void SaveUser(string data); } }