Exemplo n.º 1
0
 public ProductService(IProductProxy productProxy,
                       IShopperHistoryProxy shopperHistoryProxy,
                       IShopperHistoryAnalyzer shopperHistoryAnalyzer)
 {
     this.productProxy           = productProxy;
     this.shopperHistoryProxy    = shopperHistoryProxy;
     this.shopperHistoryAnalyzer = shopperHistoryAnalyzer;
 }
Exemplo n.º 2
0
 public CreateModel(ILogger <DetailModel> logger,
                    IOrderProxy orderProxy,
                    IClientProxy clientProxy,
                    IProductProxy productProxy
                    )
 {
     this.orderProxy   = orderProxy;
     this.clientProxy  = clientProxy;
     this.productProxy = productProxy;
 }
 public TicketController(ITicketProxy ticketProxy,
                         IReplyProxy replyProxy,
                         IStaffMemberProxy staffProxy,
                         IProductProxy productProxy,
                         IOptions <StorageOptions> storageOptions)
 {
     _ticketProxy    = ticketProxy;
     _replyProxy     = replyProxy;
     _staffProxy     = staffProxy;
     _productProxy   = productProxy;
     _storageOptions = storageOptions.Value;
 }
 public TicketController(IEmailSender emailSender,
                         IClientProxy clientProxy,
                         ITicketProxy ticketProxy,
                         IProductProxy productProxy,
                         IReplyProxy replyProxy,
                         IOptions <StorageOptions> storageOptions)
 {
     _emailSender    = emailSender;
     _clientProxy    = clientProxy;
     _ticketProxy    = ticketProxy;
     _productProxy   = productProxy;
     _replyProxy     = replyProxy;
     _storageOptions = storageOptions.Value;
 }
 /// <summary>
 /// Creates a new instance of the <see cref="PatternToolkitLibrary"/> class.
 /// </summary>
 public PatternToolkitLibrary(Runtime.IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IPatternToolkitLibrary>();
     OnCreated();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ExtensionItem"/> class.
 /// </summary>
 public ExtensionItem(IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IExtensionItem>();
 }
Exemplo n.º 7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MainTest"/> class.
 /// </summary>
 public MainTest(IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IMainTest>();
 }
Exemplo n.º 8
0
 /// <summary>
 /// Creates a new instance of the <see cref="PatternToolkitHandsOnLabs"/> class.
 /// </summary>
 public PatternToolkitHandsOnLabs(Runtime.IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IPatternToolkitHandsOnLabs>();
     OnCreated();
 }
Exemplo n.º 9
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Serializer"/> class.
 /// </summary>
 public Serializer(IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <ISerializer>();
 }
Exemplo n.º 10
0
 public ProductController(IProductProxy productProxy, IStoreProxy storeProxy)
 {
     _productProxy = productProxy;
     _storeProxy   = storeProxy;
 }
Exemplo n.º 11
0
 public WebService(IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IWebService>();
 }
Exemplo n.º 12
0
 /// <summary>
 /// Creates a new instance of the <see cref="Solution"/> class.
 /// </summary>
 public Solution(Runtime.IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <ISolution>();
     OnCreated();
 }
 public ProductController(IProductProxy productProxy)
 {
     _productProxy = productProxy;
 }
Exemplo n.º 14
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ExtensionProject"/> class.
 /// </summary>
 public ExtensionProject(IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IExtensionProject>();
 }
 /// <summary>
 /// Creates a new instance of the <see cref="AutomationLibrary"/> class.
 /// </summary>
 public AutomationLibrary(Runtime.IProduct target)
 {
     this.target = target;
     this.proxy  = target.ProxyFor <IAutomationLibrary>();
     OnCreated();
 }