コード例 #1
0
 public VoteController(VoteService _voteService, MatchService _matchService, JoueurService _joueurService, UserManager<ApplicationUser> _userManager)
 {
     VoteService = _voteService;
     MatchService = _matchService;
     JoueurService = _joueurService;
     UserManager = _userManager;
 }
コード例 #2
0
 public StatController(MatchService _matchService,
                       StatService _statService,
                       JoueurService _joueurService)
 {
     this.MatchService = _matchService;
     this.StatService = _statService;
     this.JoueurService = _joueurService;
 }
コード例 #3
0
 public CompositionController(MatchService _service,
                             CompositionService _compoService,
                             JoueurService _joueurService)
 {
     Service = _service;
     CompoService = _compoService;
     JoueurService = _joueurService;
 }
コード例 #4
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="service"></param>
 public JoueurController(JoueurService service)
 {
     _joueurService = service;
 }
コード例 #5
0
 public JoueurController(JoueurService _service)
 {
     Service = _service;
 }