public CustomerController(ICustomerStorage storage, CustomerCreator creator) { _storage = storage; _creator = creator; }
public CustomerLogic(ICustomerStorage CustomerStorage) { this.CustomerStorage = CustomerStorage; }
public CustomerRegisterController(ICustomerStorage storage) { _storage = storage; }
public CustomerLogic(ICustomerStorage customerStorage) { _customerStorage = customerStorage; }
public CustomerService(ICustomerValidation customerValidation, ICustomerStorage customerStorage, INotificationService notificationService) { _customerValidation = customerValidation; _customerStorage = customerStorage; _notificationService = notificationService; }
public CustomerCreator(ICustomerStorage storage) { _storage = storage; }