private void OnInitialize() { Genders = _humanResourcesService.GetGenders().OrderBy(x => x.Code); MaritalStatuses = _humanResourcesService.GetMaritalStatuses().OrderBy(x => x.Code); LoadManagedEmployees(); }
public IEnumerable <Gender> GetGenders() => _humanResourcesService.GetGenders();