Esempio n. 1
0
 public void LogCustomerTrackingHistory(CustomerTrackingHistory cth)
 {
     try
     {
         DACustomerTrackingHistory daCTH = new DACustomerTrackingHistory();
         daCTH.LogCustomerTrackingHistory(cth);
     }
     catch (Exception ex)
     {
         logger.Error(MODULE_NAME, "LogCustomerTrackingHistory", ex);
         throw ex;
     }
 }
Esempio n. 2
0
 // MODIFIED BY MUHAMMAD.AWAIS 8/3/2017 9:50AM
 public bool ApproveCustomer(CustomerTrackingHistory cth, string trackingFileNo, string Remarks, PaymentPlan pp, string userId)
 {
     return(daCustomer.ApproveCustomer(cth, trackingFileNo, Remarks, pp, userId));
 }
Esempio n. 3
0
 public bool RejectCustomer(CustomerTrackingHistory cth, string Remarks)
 {
     return(daCustomer.RejectCustomer(cth, Remarks));
 }
Esempio n. 4
0
 public bool SendCustomerForApproval(CustomerTrackingHistory cth, string Remarks)
 {
     return(daCustomer.SendCustomrForApproval(cth, Remarks));
 }
Esempio n. 5
0
 // AVANZA\jawwad.ahmed - 03/02/2017 09:38:03
 public void RescheduleCustomerExam(DataRow row1, DataRow row2, DataRow row3, CustomerTrackingHistory history)
 {
     this.objExamTemplate.ReScheduleCustomerExam(row1, row2, row3, history);
 }