Beispiel #1
0
 public Boolean LocationDelete()
 {
     try
     {
         Boolean status = false;
         location = new DAL.Location();
         PopulateDataLayer();
         location.LocationDelete();
         MessageBox.Show("Record Successfully Deleted!", "Delete Record");
         status = true;
         return(status);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }