Exemplo n.º 1
0
 public DashboardController(
     IEventsService eventsService,
     IListsService listsService,
     IPhotoAlbumsService photoAlbumsService)
 {
     this.eventsService      = eventsService;
     this.listsService       = listsService;
     this.photoAlbumsService = photoAlbumsService;
 }
Exemplo n.º 2
0
 // ToDo: Add IFoodService
 public WallPostsViewComponent(
     IListsService listsService,
     IEventsService eventsService,
     IPhotoAlbumsService photoAlbumsService)
 {
     this.listsService       = listsService;
     this.eventsService      = eventsService;
     this.photoAlbumsService = photoAlbumsService;
 }
Exemplo n.º 3
0
 public PhotosController(
     IPhotoAlbumsService albumsService,
     UserManager <ApplicationUser> userManager,
     ICloudinaryService cloudinaryService)
 {
     this.albumsService     = albumsService;
     this.userManager       = userManager;
     this.cloudinaryService = cloudinaryService;
 }
Exemplo n.º 4
0
 public HomeController(IPhotoAlbumsService photoAlbumsService)
 {
     _photoAlbumsService = photoAlbumsService;
 }
 public PhotoAlbumsController(IPhotoAlbumsService photoAlbumsService)
 {
     this.photoAlbumsService = photoAlbumsService;
 }
 public AccountController(IPhotoAlbumsService photoAlbumsService)
 {
     _photoAlbumsService = photoAlbumsService;
 }