コード例 #1
0
 public CustomerController(ICustomerStorage storage, CustomerCreator creator)
 {
     _storage = storage;
     _creator = creator;
 }
コード例 #2
0
ファイル: CustomerLogic.cs プロジェクト: pvl-mr/Autoshow
 public CustomerLogic(ICustomerStorage CustomerStorage)
 {
     this.CustomerStorage = CustomerStorage;
 }
コード例 #3
0
 public CustomerRegisterController(ICustomerStorage storage)
 {
     _storage = storage;
 }
コード例 #4
0
 public CustomerLogic(ICustomerStorage customerStorage)
 {
     _customerStorage = customerStorage;
 }
コード例 #5
0
 public CustomerService(ICustomerValidation customerValidation, ICustomerStorage customerStorage, INotificationService notificationService)
 {
     _customerValidation = customerValidation;
     _customerStorage = customerStorage;
     _notificationService = notificationService;
 }
コード例 #6
0
 public CustomerCreator(ICustomerStorage storage)
 {
     _storage = storage;
 }