public HomeController(IEmail emailClient,
                       IPodcastRespository podcastRespository,
                       ITokenVerification tokenVerification)
 {
     _emailClient        = emailClient;
     _podcastRespository = podcastRespository;
     _tokenVerification  = tokenVerification;
 }
Example #2
0
 public PodcastsController(IPodcastRespository podcastRespository)
 {
     _podcastRepository = podcastRespository;
 }