public CustomerServiceArchived(IArchivedDataService archivedDataService) { _archivedDataService = archivedDataService; }
public CustomerService(IArchivedDataService archivedDataService, IFailoverService failoverService, IFactoryCustomerDataAccess factoryCustomerDataAccess) { _archivedDataService = archivedDataService; _failoverService = failoverService; _factoryCustomerDataAccess = factoryCustomerDataAccess; }
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; }