Example #1
0
 public ClubController(IGetClubCommand getClubCommand, IGetClubsCommand getClubsCommand, IAddClubCommand addClubCommand, IEditClubCommand editClubCommand, IDeleteClubCommand deleteClubCommand, IGetCitiesCommand getCitiesCommand, IGetLeaguesCommand getLeaguesCommand)
 {
     _getClubCommand    = getClubCommand;
     _getClubsCommand   = getClubsCommand;
     _addClubCommand    = addClubCommand;
     _editClubCommand   = editClubCommand;
     _deleteClubCommand = deleteClubCommand;
     _getCitiesCommand  = getCitiesCommand;
     _getLeaguesCommand = getLeaguesCommand;
 }