Exemple #1
0
 public HomeController(ILogger <HomeController> logger, UserManager <ApplicationUser> userManager, ICategoryService categoryService, IOrderOffersService orderOffersService, INotificationService notificationService, SignInManager <ApplicationUser> signInManager)
 {
     _categoryService     = categoryService;
     _orderOffersService  = orderOffersService;
     _userManager         = userManager;
     _notificationService = notificationService;
     _signInManager       = signInManager;
 }
Exemple #2
0
 public OrderOfferController(IOrderOffersService orderOffersService, UserManager <ApplicationUser> userManager, ApplicationDbContext db, IDealService dealService, INotificationService notificationService, SignInManager <ApplicationUser> signInManager)
 {
     _orderOffersService = orderOffersService;
     _userManager        = userManager;
     _db                  = db;
     _dealService         = dealService;
     _signInManager       = signInManager;
     _notificationService = notificationService;
 }