public IEnumerable <Parcel> GetAllParcels()
 {
     try
     {
         IEnumerable <Parcel> parcels = _parcelRepository.GetAllParcels();
         return(parcels);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public async Task <List <Parcel> > GetAllParcels()
 {
     return(await _parcelRepository.GetAllParcels());
 }