public ErrorCodesController(
     IErrorCodeService errorCodeService,
     IErrorCodeServiceControllerMapper errorCodeServiceControllerMapper,
     IErrorCodeServiceErrorCode errorCodeServiceErrorCode)
 {
     this.errorCodeService = errorCodeService;
     this.errorCodeServiceControllerMapper = errorCodeServiceControllerMapper;
     this.errorCodeServiceErrorCode        = errorCodeServiceErrorCode;
 }
Ejemplo n.º 2
0
 public HomeController(IErrorCodeService errorCodeService) : base(errorCodeService)
 {
     this._errorCodeService = errorCodeService;
 }
Ejemplo n.º 3
0
 public ProductController(IErrorCodeService errorCodeService, IProductService productService) : base(errorCodeService)
 {
     _productService = productService;
 }
Ejemplo n.º 4
0
 public ServiceHelper(IErrorCodeService errorCodesSvc, ICacheManager cacheManager, IHttpContextAccessor httpContext)
 {
     _errorCodesSvc = errorCodesSvc;
     _cacheManager  = cacheManager;
     _httpContext   = httpContext;
 }
Ejemplo n.º 5
0
 public PostCategoryController(IErrorCodeService errorCodeService, IPostCategoryService postCategoryService) : base(errorCodeService)
 {
     _postCategoryService = postCategoryService;
 }
Ejemplo n.º 6
0
 public ApiControllerBase(IErrorCodeService errorCodeService)
 {
     _errorCodeService = errorCodeService;
 }