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