public async Task <Employee> UpdateEmployeeAsync(Employee e)
 {
     return((await _repo.ReplaceDocumentAsync(e.ImmutableId, e)).Value);
 }