Пример #1
0
 public CustomerController(ICustomerStorage storage, CustomerCreator creator)
 {
     _storage = storage;
     _creator = creator;
 }
Пример #2
0
 public CustomerLogic(ICustomerStorage CustomerStorage)
 {
     this.CustomerStorage = CustomerStorage;
 }
 public CustomerRegisterController(ICustomerStorage storage)
 {
     _storage = storage;
 }
Пример #4
0
 public CustomerLogic(ICustomerStorage customerStorage)
 {
     _customerStorage = customerStorage;
 }
 public CustomerService(ICustomerValidation customerValidation, ICustomerStorage customerStorage, INotificationService notificationService)
 {
     _customerValidation = customerValidation;
     _customerStorage = customerStorage;
     _notificationService = notificationService;
 }
Пример #6
0
 public CustomerCreator(ICustomerStorage storage)
 {
     _storage = storage;
 }