public VideoService( MomentoDbContext context, ITrackableService trackableService) { this.context = context; this.trackableService = trackableService; }
public NoteService( MomentoDbContext context, IUtilitiesService utilService, ITrackableService trackableService) { this.context = context; this.utilService = utilService; this.trackableService = trackableService; }
public ListToDoService( MomentoDbContext context, ITrackableService trackableService, IUserService userService, IReorderingService reorderingService) { this.context = context; this.trackableService = trackableService; this.userService = userService; this.reorderingService = reorderingService; }