public EventController(ISportTypeService sportTypeService)
 {
     this.sportTypeService = sportTypeService;
 }
Esempio n. 2
0
 public SportTypeController(ISportTypeService sportTypeService, IDisciplineService disciplineService)
 {
     _sportTypeService  = sportTypeService;
     _disciplineService = disciplineService;
 }