示例#1
0
 public ImageController(IImageServices imageServices)
 {
     _imageServices = imageServices;
 }
 public CarouselController(IImageServices imageServices)
 {
     _imageServices = imageServices;
     Logger = NullLogger.Instance;
 }
示例#3
0
 public ProductDetailsController(IProductBLL productBLL, IProductDetailsBLL productDetailsBLL, IImageServices imageServices) : base(imageServices)
 {
     ProductDetailsBLL = productDetailsBLL;
     this.ProductBLL   = productBLL;
 }
 public MainGroupController(IMainGroupBLL maingroupdBLL, IImageServices imageServices) : base(imageServices)
 {
     MainGroupBLL = maingroupdBLL;
 }
 public SubGroupController(ISubGroupBLL subGroupBLL, IImageServices imageServices, IMainGroupBLL MainGroupBLL) : base(imageServices)
 {
     SubGroupBLL = subGroupBLL;
 }
示例#6
0
 public ImageController(IImageServices ImageServices)
 {
     this.imageServices = ImageServices;
 }
示例#7
0
 public ErrorLogsController(IImageServices imageServices, IErrorLogsBLL errorLogs) : base(imageServices)
 {
     this.errorLogsBLL = errorLogs;
 }