예제 #1
0
 public async Task <EmployerDto> GetEmployerByEmail(String email)
 {
     using (UnitOfWorkProvider.Create())
     {
         return(await employerService.GetByEmail(email));
     }
 }