public FreehandMatchesController(IFreehandMatchService matchService, IMapper mapper)
 {
     _mapper       = mapper;
     _matchService = matchService;
 }
Beispiel #2
0
 public FreehandGoalsController(IFreehandGoalsService goalService, IFreehandMatchService matchService, IMapper mapper)
 {
     _mapper       = mapper;
     _goalService  = goalService;
     _matchService = matchService;
 }