public CustomerService(ICommandSender commandService, ICustomerRepository customerRepository, ICustomerCacheStorage customerCacheStorage, ICustomerExternalLoginRepository customerExternalLoginRepository) { _commandService = commandService; _customerRepository = customerRepository; _customerCacheStorage = customerCacheStorage; _customerExternalLoginRepository = customerExternalLoginRepository; }
public VendorService(ICommandSender commandService, IVendorRepository vendorRepository, ICustomerCacheStorage customerCacheStorage) { _commandService = commandService; _vendorRepository = vendorRepository; _customerCacheStorage = customerCacheStorage; }