public async Task <bool> AddDistrictAsync(District district)
 {
     try
     {
         return(await districtRepository.AddDistrictAsync(district));
     }
     catch (Exception ex)
     {
         //log exception
         throw ex;
     }
 }