예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CommonController" /> class.
 /// </summary>
 /// <param name="_iMaster">The i common.</param>
 /// <param name="_iProductCategoryType">Type of the i product category.</param>
 /// <param name="_iUser">The i user.</param>
 /// <param name="_iSize">Size of the i.</param>
 public MasterController(IMaster _iMaster, IProductCategoryType _iProductCategoryType, IUser _iUser, ISize _iSize)
 {
     iMaster = _iMaster;
     iProductCategoryType = _iProductCategoryType;
     iUser = _iUser;
     iSize = _iSize;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CommonController" /> class.
 /// </summary>
 /// <param name="_iUser">The i user.</param>
 /// <param name="_iOrder">The i order.</param>
 /// <param name="_iOrderInvoice">The i order invoice.</param>
 /// <param name="_env">The env.</param>
 /// <param name="_config">The configuration.</param>
 /// <param name="_iCart">The i cart.</param>
 /// <param name="_iContent">Content of the i.</param>
 /// <param name="_iStyleCampaign">The i style campaign.</param>
 /// <param name="_iTestimonial">The i testimonial.</param>
 /// <param name="_iPromoCode">The i promo code.</param>
 /// <param name="_iMaster">The i master.</param>
 /// <param name="_iProductCategoryType">Type of the i product category.</param>
 /// <param name="_iProduct">The i product.</param>
 /// <param name="_iSize">Size of the i.</param>
 public CommonController(IUser _iUser, IOrder _iOrder, IOrderInvoice _iOrderInvoice, IHostingEnvironment _env, IConfiguration _config, ICart _iCart, IContent _iContent, IStyleCampaign _iStyleCampaign, ITestimonial _iTestimonial, IPromoCode _iPromoCode, IMaster _iMaster, IProductCategoryType _iProductCategoryType, IProduct _iProduct, ISize _iSize)
 {
     iUser                = _iUser;
     iOrder               = _iOrder;
     iOrderInvoice        = _iOrderInvoice;
     env                  = _env;
     config               = _config;
     iCart                = _iCart;
     iStyleCampaign       = _iStyleCampaign;
     iTestimonial         = _iTestimonial;
     iPromoCode           = _iPromoCode;
     iMaster              = _iMaster;
     iProductCategoryType = _iProductCategoryType;
     iProduct             = _iProduct;
     iSize                = _iSize;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ProductCategoryTypeController"/> class.
 /// </summary>
 /// <param name="_iProductCategoryType">Type of the i product category.</param>
 public ProductCategoryTypeController(IProductCategoryType _iProductCategoryType)
 {
     iProductCategoryType = _iProductCategoryType;
 }
예제 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CampaignController" /> class.
 /// </summary>
 /// <param name="_iStyleCampaign">The i style campaign.</param>
 /// <param name="_env">The env.</param>
 /// <param name="_iProductCategoryType">Type of the i product category.</param>
 public CampaignController(IStyleCampaign _iStyleCampaign, IHostingEnvironment _env, IProductCategoryType _iProductCategoryType)
 {
     iStyleCampaign       = _iStyleCampaign;
     env                  = _env;
     iProductCategoryType = _iProductCategoryType;
 }