- using MTWorkHR.Application.Models;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace MTWorkHR.Application.Identity
- {
- public interface IAuthService
- {
- Task<AuthResponse> Login(AuthRequest request);
- Task<RegistrationResponse> Register(RegistrationRequest request);
- }
- }
|