Esempio n. 1
0
        public JsonResult SaveBillAssessment(BillingParties BillingPartiesObj)
        {
            try
            {
                _BillingService.SaveBillAssessment(BillingPartiesObj);

                return(Json(new Result
                {
                    Status = ResultStatus.Success,
                    Message = "Invoice has been Saved Successfully",
                    Data = " "
                }, JsonRequestBehavior.AllowGet));
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
Esempio n. 2
0
 public void SaveBillAssessment(BillingParties BillingPartiesObj)
 {
     BillingDao.SaveBillAssessment(BillingPartiesObj);
 }