source: FarmatikoServices/Auth/IAuthService.cs@ afc9a9a

Last change on this file since afc9a9a was d23bf72, checked in by DimitarSlezenkovski <dslezenkovski@…>, 3 years ago

Add SystemService, Auth, fix a lil bugs :)

  • Property mode set to 100644
File size: 318 bytes
RevLine 
[d23bf72]1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace 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.