public DocumentUploadController(IHostEnvironment environment, IDocumentUploadService FormService, IConfiguration configuration, IErrorlogService errorlogService)
 {
     _environment          = environment ?? throw new ArgumentNullException(nameof(environment));
     this._formService     = FormService;
     this._errorlogService = errorlogService;
     Configuration         = configuration;
 }
Ejemplo n.º 2
0
 public GenericController(IGenericService genService, IRecentLinksService recentLinks, IErrorlogService errorlogService, IHttpContextAccessor httpContextAccessor, IConfiguration configuration)
 {
     this._genService      = genService;
     this._recLinks        = recentLinks;
     _httpContextAccessor  = httpContextAccessor;
     _configuration        = configuration;
     this._errorlogService = errorlogService;
 }
Ejemplo n.º 3
0
 public AdminController(IAdminService adminService, IAdminDirectoryAccessService adminDirectoryAccessService, IErrorlogService errorlogService)
 {
     this._adminService = adminService;
     this._adminDirectoryAccessService = adminDirectoryAccessService;
     this._errorlogService             = errorlogService;
 }
Ejemplo n.º 4
0
 public GenericService(IMapper mapper, IGeneric repo, IErrorlogService errorlogService)
 {
     this._mapper          = mapper;
     this._repo            = repo;
     this._errorlogService = errorlogService;
 }
Ejemplo n.º 5
0
        // private readonly ILogger _logger;

        public DirectoryController(IDirectoryService dirService, IErrorlogService errorlogService)
        {
            this._dirService      = dirService;
            this._errorlogService = errorlogService;
            //this._logger = logger;
        }
Ejemplo n.º 6
0
 public DocumentController(IDocumentService docService, IConfiguration configuration, IErrorlogService errorlogService)
 {
     this._docService      = docService;
     this.Configuration    = configuration;
     this._errorlogService = errorlogService;
 }
Ejemplo n.º 7
0
 public RolesController(IRoles repo, IErrorlogService errorlogService)
 {
     this._repo            = repo;
     this._errorlogService = errorlogService;
 }
Ejemplo n.º 8
0
 public FavouriteController(IMapper mapper, IFavouriteService service, IErrorlogService errorlogService)
 {
     this.mapper           = mapper;
     this._service         = service;
     this._errorlogService = errorlogService;
 }
Ejemplo n.º 9
0
 public MenuController(IMenuService menuService, IErrorlogService errorlogService)
 {
     this._menuService     = menuService;
     this._errorlogService = errorlogService;
 }