Ejemplo n.º 1
0
 public async Task <EmployeeCreateResult> Register(EmployeeCreateParameters parameters)
 {
     parameters.Password = _protectionService.ComputeHash(parameters.Password);
     return(await Create(parameters));
 }