public FreehandDoubleMatchesController(IFreehandDoubleMatchService doubleMatchService, IMapper mapper)
 {
     _mapper             = mapper;
     _doubleMatchService = doubleMatchService;
 }
Exemplo n.º 2
0
 public FreehandDoubleGoalsController(IFreehandDoubleGoalService doubleFreehandGoalservice, IMapper mapper, IFreehandDoubleMatchService doubleFreehandMatchService)
 {
     _mapper = mapper;
     _doubleFreehandGoalservice  = doubleFreehandGoalservice;
     _doubleFreehandMatchService = doubleFreehandMatchService;
 }