public AllSeedDataService(
     IClassificationRepository classificationRepository,
     IEnrollmentMethodRepository enrollmentMethodRepository,
     IEnrollmentSystemRepository enrollmentSystemRepository,
     ISalesExecRepository salesExecRepository,
     IVBCarrierRepository vBCarrierRepository)
 {
     this._classificationRepository   = classificationRepository;
     this._enrollmentMethodRepository = enrollmentMethodRepository;
     this._enrollmentSystemRepository = enrollmentSystemRepository;
     this._salesExecRepository        = salesExecRepository;
     this._vBCarrierRepository        = vBCarrierRepository;
 }
Beispiel #2
0
 public SalesExecService(ISalesExecRepository salesExecRepository)
 {
     this._salesExecRepository = salesExecRepository;
 }