public async Task <IHttpActionResult> GetDepartmentTypes()
        {
            var output = await _orgService.GetDepartmentTypesAsync();

            return(Ok(output));
        }