Example #1
0
 public string DeleteContract(int id)
 {
     if (ContractServices.DeleteContractByID_String(id).ToLower() == "Successful".ToLower())
     {
         return("Successfully Deleted!");
     }
     else
     {
         return(ContractServices.DeleteContractByID_String(id));
     }
 }