Exemplo n.º 1
0
 public CustomerService(ICommandSender commandService, ICustomerRepository customerRepository, ICustomerCacheStorage customerCacheStorage, ICustomerExternalLoginRepository customerExternalLoginRepository)
 {
     _commandService                  = commandService;
     _customerRepository              = customerRepository;
     _customerCacheStorage            = customerCacheStorage;
     _customerExternalLoginRepository = customerExternalLoginRepository;
 }
Exemplo n.º 2
0
 public VendorService(ICommandSender commandService, IVendorRepository vendorRepository, ICustomerCacheStorage customerCacheStorage)
 {
     _commandService       = commandService;
     _vendorRepository     = vendorRepository;
     _customerCacheStorage = customerCacheStorage;
 }