示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ContractPayerMapReportLogic"/> class.
 /// </summary>
 /// <param name="payerMappingReportRepository">The payer mapping report repository.</param>
 public ContractPayerMapReportLogic(IContractPayerMapReportRepository payerMappingReportRepository)
 {
     if (payerMappingReportRepository != null)
     {
         _payerMappingReportRepository = payerMappingReportRepository;
     }
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ContractPayerMapReportLogic"/> class.
 /// </summary>
 /// <param name="connectionString">The connection string.</param>
 public ContractPayerMapReportLogic(string connectionString)
 {
     _payerMappingReportRepository = Factory.CreateInstance <IContractPayerMapReportRepository>(connectionString, true);
 }