Beispiel #1
0
 public TurtleBarrelController(INotesRepository notesRepository, INoteImagesRepository imagesRepository, ITimeCountersRepository timeCounters)
 {
     this._notesRepository        = notesRepository;
     this._imagesRepository       = imagesRepository;
     this._timeCountersRepository = timeCounters;
 }
Beispiel #2
0
 public NoteImagesController(INotesRepository notesRepository, INoteImagesRepository imagesRepository)
 {
     this._notesRepository  = notesRepository;
     this._imagesRepository = imagesRepository;
 }