public async Task <(bool success, AccessRights roles)> Login(string username, string password)
 {
     using (UnitOfWorkProvider.Create())
     {
         return(await patientService.AuthorizePatientAsync(username, password));
     }
 }