예제 #1
0
 public DapperService(
     IDapperSyncRepository dapperSync,
     IDapperAsyncRepository dapperAsyncRepository,
     IDapperProceudureRepository dapperProcedureRepository)
 {
     this.dapperSync                = dapperSync;
     this.dapperAsyncRepository     = dapperAsyncRepository;
     this.dapperProcedureRepository = dapperProcedureRepository;
 }
 public ClientInformationForm(IPayerResponseRepository payerResponseRepo,
                              IDapperAsyncRepository <ExtractionMap> extractionMapRepo,
                              IAsyncRepository <AgentConfiguration> agentConfigRepo,
                              IAsyncRepository <ClientScript> clientScriptRepo)
 {
     this._payerResponseRepo = payerResponseRepo;
     this._extractionMapRepo = extractionMapRepo;
     this._agentConfigRepo   = agentConfigRepo;
     this._clientScriptsRepo = clientScriptRepo;
     InitializeComponent();
 }