public AdminController(SignInManager <ApplicationUser> signInManager, ILogger <AdminController> logger,
                        ICustomerService customerService, IMenuService menuService, IGalleryItemService galleryItemService,
                        AdminViewModel adminViewModel, IApplicationUserService applicationUserService)
 {
     _signInManager          = signInManager;
     _logger                 = logger;
     _customerService        = customerService;
     _menuService            = menuService;
     _galleryItemService     = galleryItemService;
     _adminViewModel         = adminViewModel;
     _applicationUserService = applicationUserService;
 }
 public GalleryItemController(IUnitOfWork uow, IGalleryItemService galleryItemService, IGalleryService galleryService)
 {
     _uow = uow;
     _galleryItemService = galleryItemService;
     _galleryService = galleryService;
 }
Ejemplo n.º 3
0
 public GalleryItemController(IGalleryItemService galleryItemService, IGalleryItemCategoryService galleryItemCategoryService, IGalleryService galleryService)
 {
     this.galleryItemService         = galleryItemService;
     this.galleryItemCategoryService = galleryItemCategoryService;
     this.galleryService             = galleryService;
 }