Esempio n. 1
0
 public VideosController(
     IVideoQueries videoQueries,
     IVideoCommands videoCommands)
 {
     this.videoQueries  = videoQueries;
     this.videoCommands = videoCommands;
 }
Esempio n. 2
0
 public UploadController(
     IVideoCommands videoWriteService,
     IFileQueries fileQueries,
     UserManager <User> userManager)
 {
     this.videoWriteService = videoWriteService;
     this.fileQueries       = fileQueries;
     this.userManager       = userManager;
 }