Beispiel #1
0
 public PictureService(PictureData pictureData, IMultimediaLoader loader)
 {
     this.pictureData = pictureData;
     this.loader      = loader;
 }
Beispiel #2
0
 public AudioService(AudioData dataAccessObject, IMultimediaLoader loader)
 {
     this.loader          = loader;
     this.audioDataAccess = dataAccessObject;
 }
Beispiel #3
0
 public NewsService(NewsData newsData, IMultimediaLoader loader)
 {
     this.loader   = loader;
     this.newsData = newsData;
 }
Beispiel #4
0
 public RawPictureService(IMultimediaLoader loader)
 {
     this.loader = loader;
 }