Exemplo n.º 1
0
 public TeamController(IIdentityService identityService, ITeamService teamService, IPlayerService playerService, IFormationService formationService)
 {
     _IdentityService  = identityService;
     _TeamService      = teamService;
     _PlayerService    = playerService;
     _FormationService = formationService;
 }
Exemplo n.º 2
0
 public FormationController(IFormationService formationService, IPlayerService playerService)
 {
     _FormationService = formationService;
     _PlayerService    = playerService;
 }
 public FormationController(IFormationService formationService)
 {
     _formationService = formationService;
 }
 public FormationWebApiController()
 {
     MyService = new FormationService();
     Index();
     formations = Index().ToList();
 }