public SearchController([Dependency] ShowService service) { Service = service; }
public EpisodesController( ShowService Dependency ) { Service = Dependency; }
public ProposalsController( [Dependency] ProposalService proposalService, [Dependency] IUserRepository userRepository, [Dependency] ShowService showService ) { ProposalService = proposalService; UserRepo = userRepository; ShowService = showService; }