Ejemplo n.º 1
0
 public ActionResult DeleteContractFine(string id)
 {
     string strErrText;
     ContractSystem contract = new ContractSystem();
     if (contract.DeleteContractFine(long.Parse(id), LoginAccountId, LoginStaffName, out strErrText))
     {
         return Json(string.Empty);
     }
     else
     {
         return Json(strErrText);
     }
 }