Exemplo n.º 1
0
 public string DeleteLocation(int locationid)
 {
     if (LocationServices.DeleteLocationByID_String(locationid).ToLower() == "Successful".ToLower())
     {
         return("Successfully Deleted!");
     }
     else
     {
         return(LocationServices.DeleteLocationByID_String(locationid));
     }
 }