source:
FarmatikoServices/Auth/IAuthService.cs@
ad60966
Last change on this file since ad60966 was d23bf72, checked in by , 4 years ago | |
---|---|
|
|
File size: 318 bytes |
Rev | Line | |
---|---|---|
[d23bf72] | 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.