IAuthService.cs 370 B

123456789101112131415161718
  1. using MTWorkHR.Application.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace MTWorkHR.Application.Identity
  8. {
  9. public interface IAuthService
  10. {
  11. Task<AuthResponse> Login(AuthRequest request);
  12. Task<AuthResponse> AdminLogin(AuthRequest request);
  13. }
  14. }