public SearchAdvertsController(
     ISharedTravelsService sharedTravelsService,
     UserManager <ElectricTravelUser> userManager)
 {
     this.sharedTravelsService = sharedTravelsService;
     this.userManager          = userManager;
 }
 public SharedTravelAdvertsController(
     ISharedTravelsService sharedTravelsService,
     ICastCollectionsService castCollectionsService,
     UserManager <ElectricTravelUser> userManager)
 {
     this.sharedTravelsService   = sharedTravelsService;
     this.castCollectionsService = castCollectionsService;
     this.userManager            = userManager;
 }
Ejemplo n.º 3
0
 public SharedTravelsController(
     ISharedTravelsService sharedTravelsService,
     IUsersService usersService,
     ICastCollectionsService castCollectionsService,
     IRatingService ratingService,
     ICarsService carsService,
     IImagesService imagesService,
     AspNetUserManager <ElectricTravelUser> userManager)
 {
     this.sharedTravelsService   = sharedTravelsService;
     this.ratingService          = ratingService;
     this.carsService            = carsService;
     this.imagesService          = imagesService;
     this.userManager            = userManager;
     this.usersService           = usersService;
     this.castCollectionsService = castCollectionsService;
 }
 public CountItemsViewComponent(IArticlesService articlesService, ISharedTravelsService sharedTravelsService)
 {
     this.articlesService      = articlesService;
     this.sharedTravelsService = sharedTravelsService;
 }
Ejemplo n.º 5
0
 public HomeController(ISharedTravelsService sharedTravelsService)
 {
     this.sharedTravelsService = sharedTravelsService;
 }