public ProductController(IExternalCommandService<BusinessAdminSecurityInformation> businessAdminExternalCommandService)
 {
     _businessAdminExternalCommandService = businessAdminExternalCommandService;
 }
 public ProductController(IExternalCommandService externalCommandService)
 {
     _externalCommandService = externalCommandService;
 }
Exemplo n.º 3
0
 public StoreController(IExternalCommandService externalCommandService, IDtoExpander dtoExpander)
 {
     _externalCommandService = externalCommandService;
     _dtoExpander            = dtoExpander;
 }
        public StoreController(IExternalCommandService<AnonymousSecurityInformation> anonymousExternalCommandService, 
			IExternalCommandService<BusinessAdminSecurityInformation> businessAdminExternalCommandService)
        {
            _anonymousExternalCommandService = anonymousExternalCommandService;
            _businessAdminExternalCommandService = businessAdminExternalCommandService;
        }
Exemplo n.º 5
0
 public DtoExpander(IDtoExpanderEngine engine, IExternalCommandService externalCommandService, IMapper mapper)
 {
     _engine = engine;
     _externalCommandService = externalCommandService;
     _mapper = mapper;
 }