示例#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;
 }
 public CompositionController(MatchService _service,
                             CompositionService _compoService,
                             JoueurService _joueurService)
 {
     Service = _service;
     CompoService = _compoService;
     JoueurService = _joueurService;
 }
 public CalendrierController(MatchService Service)
 {
     this.Service = Service;
 }
示例#5
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="service"></param>
 /// <param name="mService"></param>
 /// <param name="userManager"></param>
 public VotesController(VoteService service, MatchService mService, UserManager<ApplicationUser> userManager)
 {
     _service = service;
     _matchService = mService;
     _userManager = userManager;
 }
示例#6
0
 /// <summary>
 /// Default constuctor
 /// </summary>
 /// <param name="service"></param>
 /// <param name="compoService"></param>
 public MatchController(MatchService service, CompositionService compoService)
 {
     _matchService = service;
     _compoService = compoService;
 }
 public JourneeController(MatchService _service)
 {
     Service = _service;
 }