source:
FarmatikoServices/Auth/IAuthService.cs@
7520f88
Last change on this file since 7520f88 was d23bf72, checked in by , 4 years ago | |
---|---|
|
|
File size: 318 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Text; |
4 | |
5 | namespace FarmatikoServices.Auth |
6 | { |
7 | public interface IAuthService |
8 | { |
9 | bool IsAnExistingUser(string userName); |
10 | bool IsValidUserCredentials(string userName, string password); |
11 | string GetUserRole(string userName); |
12 | } |
13 | } |
Note:
See TracBrowser
for help on using the repository browser.