예제 #1
0
 public VotingScheduler(IVotingHistoryService votingHistoryService)
 {
     _votingHistoryService = votingHistoryService;
 }
예제 #2
0
 public VotingTheme(string title, IVotingHistoryService votingHistoryService)
 {
     Title = title;
     _votingHistoryService = votingHistoryService;
     Create();
 }