Beispiel #1
0
 public PointController(IUnitOfWork unitOfWork,
                        IImageService imageService,
                        IImageHandlerService imageHandlerService)
 {
     _unitOfWork          = unitOfWork;
     _imageService        = imageService;
     _imageHandlerService = imageHandlerService;
 }
Beispiel #2
0
 public EmployeeController(IEmployeService employeService
                           , UserManager <User> userManager,
                           IUserService userService,
                           IMapper mapper,
                           IImageHandlerService <IActionResult> image)
 {
     _employeeService = employeService;
     _userManager     = userManager;
     _userService     = userService;
     _mapper          = mapper;
     _image           = image;
 }
Beispiel #3
0
 public BaseAssetController(ILibraryDataService libraryDataService, IImageHandlerService imageService, IHostingEnvironment appEnvironment)
 {
     this._libraryDataService = libraryDataService;
     this._imageService       = imageService;
     this._appEnvironment     = appEnvironment;
 }
Beispiel #4
0
 public ValuesController(IImageHandlerService <IActionResult> image)
 {
     _image = image;
 }
Beispiel #5
0
 public DemoImageController(IImageHandlerService imageHandlerService)
 {
     _imageHandlerService = imageHandlerService;
 }
Beispiel #6
0
 public JournalController(ILibraryDataService libraryDataService, IImageHandlerService imageService, IHostingEnvironment appEnvironment)
     : base(libraryDataService, imageService, appEnvironment)
 {
 }