예제 #1
0
 public CustomerManager(IConnectivity connectivity,
                        IServiceMapper mapper,
                        IInternalAuthManager authManager,
                        ICustomerWebService customerWebService,
                        ICustomerRepository customerRepository) : base(connectivity, mapper, authManager)
 {
     _customerWebService = customerWebService;
     _customerRepository = customerRepository;
 }
예제 #2
0
 public CustomerMVCService(ICustomerWebService customerWebService)
 {
     this.customerWebService = customerWebService;
 }
예제 #3
0
 public CustomerNavigationViewComponent(ICustomerWebService customerWebService)
 {
     this._customerWebService = customerWebService;
 }