1234567891011121314 |
- // <author></author>
- // <date></date>
- // <description></description>
- using ERP.Framework.Config;
- using ERP.Framework.Security.Core;
- namespace ERP.Core.Interface
- {
- public interface IAuthService
- {
- public LoginUser GetLoginUser(SecurityConfig securityConfig, string loginName, string password);
- }
- }
|