Ejemplo n.º 1
0
 public HomeController(IEmail emailClient,
                       IPodcastRespository podcastRespository,
                       ITokenVerification tokenVerification)
 {
     _emailClient        = emailClient;
     _podcastRespository = podcastRespository;
     _tokenVerification  = tokenVerification;
 }
Ejemplo n.º 2
0
 public PodcastsController(IPodcastRespository podcastRespository)
 {
     _podcastRepository = podcastRespository;
 }