public CustomerServiceArchived(IArchivedDataService archivedDataService)
 {
     _archivedDataService = archivedDataService;
 }
Example #2
0
 public CustomerService(IArchivedDataService archivedDataService, IFailoverService failoverService, IFactoryCustomerDataAccess factoryCustomerDataAccess)
 {
     _archivedDataService = archivedDataService;
     _failoverService = failoverService;
     _factoryCustomerDataAccess = factoryCustomerDataAccess;
 }
Example #3
0
 public StudentService(IFactoryStudentDataAccess factoryStudentDataAccess, IFailoverService failoverService, IArchivedDataService archivedDataService)
 {
     this.factoryStudentDataAccess = factoryStudentDataAccess;
     this.failoverService          = failoverService;
     this.archivedDataService      = archivedDataService;
 }
 public CustomerService(IArchivedDataService archivedDataService, ICustomerDataService customerDataService)
 {
     _archivedDataService = archivedDataService;
     _customerDataService = customerDataService;
 }