Beispiel #1
0
 public CompaniesController(LearnerContext context, IWebHostEnvironment env, ILookUpService lookUpService, FoldersConfigation fconfig, IFileService fileService)
 {
     _context       = context;
     _lookUpService = lookUpService;
     _fconfig       = fconfig;
     _fileService   = fileService;
     _env           = env;
 }
Beispiel #2
0
 public DataImportController(ILookUpService lookUpService, IFileService fileService, IDataImportService dataService, FoldersConfigation foldersConfigation, INotyfService notyf, UserManager <Users> userManager, LearnerContext learnerContext)
 {
     _userManager        = userManager;
     _fileService        = fileService;
     _foldersConfigation = foldersConfigation;
     _lookUpService      = lookUpService;
     _notyf          = notyf;
     _learnerContext = learnerContext;
     _dataService    = dataService;
 }
Beispiel #3
0
 public DocumentsController(LearnerContext context,
                            ILookUpService lookUpService,
                            IFileService fileService,
                            FoldersConfigation foldersConfigation,
                            UserManager <Users> userManager,
                            INotyfService notyf)
 {
     _context            = context;
     _lookUpService      = lookUpService;
     _fileService        = fileService;
     _userManager        = userManager;
     _foldersConfigation = foldersConfigation;
     _notyf = notyf;
 }
 public PersonController(LearnerContext context, IWebHostEnvironment env,
                          ILookUpService lookUpService,IFileService fileService,
                          FoldersConfigation fconfig,
                          UserManager<Users> userManager,
                          INotyfService notyf
                          )
 {
     _context = context;
     _env = env;
     _lookUpService = lookUpService;
     _fileService = fileService;
     _fconfig = fconfig;
     _userManager = userManager;
     _notyf = notyf;
 }