Exemple #1
0
 public VideoService(
     MomentoDbContext context,
     ITrackableService trackableService)
 {
     this.context          = context;
     this.trackableService = trackableService;
 }
Exemple #2
0
 public NoteService(
     MomentoDbContext context,
     IUtilitiesService utilService,
     ITrackableService trackableService)
 {
     this.context          = context;
     this.utilService      = utilService;
     this.trackableService = trackableService;
 }
Exemple #3
0
 public ListToDoService(
     MomentoDbContext context,
     ITrackableService trackableService,
     IUserService userService,
     IReorderingService reorderingService)
 {
     this.context           = context;
     this.trackableService  = trackableService;
     this.userService       = userService;
     this.reorderingService = reorderingService;
 }