Пример #1
0
 public TransactionWrapper IntegrateRenewalMotorInsurance()
 {
     try
     {
         SellingPointSQL.weds(MotorTableIntegration.RenewalInsuranceIntegration);
         return(new TransactionWrapper {
             IsTransactionDone = true
         });
     }
     catch (Exception ex)
     {
         return(new TransactionWrapper {
             IsTransactionDone = false, TransactionErrorMessage = ex.Message
         });
     }
 }
Пример #2
0
 public TransactionWrapper IntegrateDomesticInsuranceMaster()
 {
     try
     {
         SellingPointSQL.weds(DomesticTableIntegration.DomesticDetailsIntegration);
         return(new TransactionWrapper()
         {
             IsTransactionDone = true
         });
     }
     catch (Exception exc)
     {
         return(new TransactionWrapper()
         {
             IsTransactionDone = false, TransactionErrorMessage = exc.Message
         });
     }
 }
Пример #3
0
 public TransactionWrapper IntegrateInsuredMaster()
 {
     try
     {
         SellingPointSQL.weds(MasterTablesIntegration.InsuredMasterIntegration);
         return(new TransactionWrapper()
         {
             IsTransactionDone = true
         });
     }
     catch (Exception exc)
     {
         return(new TransactionWrapper()
         {
             IsTransactionDone = false, TransactionErrorMessage = exc.Message
         });
     }
 }