Ejemplo n.º 1
0
 public PodcastGetService(IPodcastDataAccess podcastDataAccess)
 {
     this.PodcastDataAccess = podcastDataAccess;
 }
Ejemplo n.º 2
0
 public PodcastCreateService(IPodcastDataAccess podcastDataAccess, IAlbumGetService albumGetService)
 {
     PodcastDataAccess = podcastDataAccess;
     AlbumGetService   = albumGetService;
 }