1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- using Long.Common.Basedata;
- using Long.Core.Query;
- namespace Long.Service.UserService.Basedata
- {
-
-
-
- public interface IUserService
- {
-
-
-
-
- Task<IEnumerable<User>> Get();
-
-
-
-
-
- Task<IEnumerable<User>> Get(QueryParamenter queryParamenter);
-
-
-
-
-
- Task<User> GetById(long id);
-
-
-
-
-
- Task<User> GetByUserName(string userName);
-
-
-
-
-
- Task<long> Regist(RegistInput input);
-
-
-
-
-
-
- Task<int> UpdatePassword(long id, string password);
- }
- }
|