コード例 #1
0
 public PaymentTypeCustomTableLogic(IPaymentTypeCustomTableRepository paymentTypeAscFeeScheduleDetailsRepository)
 {
     if (paymentTypeAscFeeScheduleDetailsRepository != null)
     {
         _paymentTypeCustomTableRepository = paymentTypeAscFeeScheduleDetailsRepository;
     }
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PaymentTypeCustomTableLogic"/> class.
 /// </summary>
 /// <param name="connectionString">The connection string.</param>
 public PaymentTypeCustomTableLogic(string connectionString)
 {
     _paymentTypeCustomTableRepository = Factory.CreateInstance <IPaymentTypeCustomTableRepository>(connectionString, true);
 }