/// <summary>
 /// Initializes a new instance of the <see cref="ServiceLineClaimFieldLogic"/> class.
 /// </summary>
 /// <param name="reportSelectionRepository">The service line claim field repository.</param>
 public ReportSelectionLogic(IReportSelectionRepository reportSelectionRepository)
 {
     if (reportSelectionRepository != null)
     {
         _reportSelectionRepository = reportSelectionRepository;
     }
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ReportSelectionLogic"/> class.
 /// </summary>
 /// <param name="connectionString">The connection string.</param>
 public ReportSelectionLogic(string connectionString)
 {
     _reportSelectionRepository = Factory.CreateInstance <IReportSelectionRepository>(connectionString, true);
 }