public UserController(ILogErrorService logErrorService, IGroupService groupService, IRoleService roleService, ApplicationUserManager userManager)
     : base(logErrorService)
 {
     this.logErrorService = logErrorService;
     this.groupService    = groupService;
     this.roleService     = roleService;
     this.userManager     = userManager;
 }
 public CartController(IProductService productService, IOrderService orderService, ILogErrorService logErrorService, IMailService mailService, ApplicationUserManager userManager, AppSettings appSettings)
 {
     this.productService  = productService;
     this.orderService    = orderService;
     this.userManager     = userManager;
     this.appSettings     = appSettings;
     this.logErrorService = logErrorService;
     this.mailService     = mailService;
 }
 public StatisticController(ILogErrorService logErrorService,
                            IStaticsticService staticsticService,
                            IOrderService orderService,
                            IOrderDetailService orderDetailService)
     : base(logErrorService)
 {
     this.logErrorService    = logErrorService;
     this.staticsticService  = staticsticService;
     this.orderService       = orderService;
     this.orderDetailService = orderDetailService;
 }
Esempio n. 4
0
 public OrderController(ILogErrorService logErrorService,
                        IOrderDetailService orderDetailService,
                        IOrderService orderService,
                        IMailService mailService,
                        IProductService productService
                        ) : base(logErrorService)
 {
     this.orderDetailService = orderDetailService;
     this.orderService       = orderService;
     this.logErrorService    = logErrorService;
     this.mailService        = mailService;
     this.productService     = productService;
 }
 public NewsCategoryController(ILogErrorService logErrorService, INewsCategoryService newsCategoryService) : base(logErrorService)
 {
     this.logErrorService     = logErrorService;
     this.newsCategoryService = newsCategoryService;
 }
Esempio n. 6
0
 public AboutController(ILogErrorService logErrorService, IAboutService aboutService) : base(logErrorService)
 {
     this.logErrorService = logErrorService;
     this.aboutService    = aboutService;
 }
 public BrandController(ILogErrorService logErrorService, IBrandService brandService) : base(logErrorService)
 {
     this.logErrorService = logErrorService;
     this.brandService    = brandService;
 }
 public HomeController(ILogErrorService logErrorService) : base(logErrorService)
 {
     this.logErrorService = logErrorService;
 }
 public CostumerController(ICustomerService costumerService, ILogErrorService logErrorService)
 {
     this._costumerService = costumerService;
     this._logErrorService = logErrorService;
 }
Esempio n. 10
0
 public FeedbackController(ILogErrorService logErrorService, IFeedbackService feedbackService) : base(logErrorService)
 {
     this.logErrorService = logErrorService;
     this.feedbackService = feedbackService;
 }
Esempio n. 11
0
 public void Detach(ILogErrorService logErrorService)
 {
     _logErrorServices.Remove(logErrorService);
 }
Esempio n. 12
0
 public CompanyController(ICompanyService companyService, ILogErrorService logErrorService)
 {
     this._companyService  = companyService;
     this._logErrorService = logErrorService;
 }
Esempio n. 13
0
 public AddressController(IAddressService addressService, ILogErrorService logErrorService)
 {
     this._addressService  = addressService;
     this._logErrorService = logErrorService;
 }
Esempio n. 14
0
 public MessageService(ILogErrorService logErrorService, IConfigService configService)
 {
     this.logErrorService = logErrorService;
     this.configService   = configService;
 }
Esempio n. 15
0
 public RoleController(ILogErrorService logErrorService, IRoleService roleService) : base(logErrorService)
 {
     this.logErrorService = logErrorService;
     this.roleService     = roleService;
 }
Esempio n. 16
0
 public void Attach(ILogErrorService logErrorService)
 {
     _logErrorServices.Add(logErrorService);
 }
 public LogErrorsController(ILogErrorService logErrorService, ILogger <LogErrorsController> logger)
 {
     _logErrorService = logErrorService ?? throw new ArgumentNullException(nameof(logErrorService));
     _logger          = logger ?? throw new ArgumentNullException(nameof(logger));
 }
Esempio n. 18
0
 public ContactController(ILogErrorService logErrorService, IContactService contactService) : base(logErrorService)
 {
     this.logErrorService = logErrorService;
     this.contactService  = contactService;
 }
 public ExceptionFilterAttribute(IHttpContextAccessor accessor, ILogErrorService logErrorService, IHostingEnvironment hostingEnvironment)
 {
     Accessor           = accessor;
     LogErrorService    = logErrorService;
     HostingEnvironment = hostingEnvironment;
 }
Esempio n. 20
0
 public MailService(ILogErrorService logErrorService, AppSettings appSettings)
 {
     this.logErrorService = logErrorService;
     this.appSettings     = appSettings;
 }
Esempio n. 21
0
 public ProductCategoryController(ILogErrorService logErrorService, IProductCategoryService productCategoryService) : base(logErrorService)
 {
     this.productCategoryService = productCategoryService;
 }
 public AccountController(ILogErrorService logErrorService) : base(logErrorService)
 {
 }
 public BaseApiController(ILogErrorService logErrorService)
 {
     this.logErrorService = logErrorService;
 }