Пример #1
0
 public RateSystemController(IRateSystemService rateSystems)
 {
     this.rateSystems = rateSystems;
 }
Пример #2
0
 public IntroductionController(IRateSystemService rateSystems)
 {
     this.rateSystems = rateSystems;            
 }
Пример #3
0
 public UserController(IUserService users, IParticipantService participants, IRateSystemService rateSystems)
 {
     this.users = users;
     this.participants = participants;
     this.rateSystems = rateSystems;
 }