IAuthService.cs 320 B

1234567891011121314
  1. // <author></author>
  2. // <date></date>
  3. // <description></description>
  4. using ERP.Framework.Config;
  5. using ERP.Framework.Security.Core;
  6. namespace ERP.Core.Interface
  7. {
  8. public interface IAuthService
  9. {
  10. public LoginUser GetLoginUser(SecurityConfig securityConfig, string loginName, string password);
  11. }
  12. }