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