Exemple #1
0
 public SportCountryController(ILogger <SportCountryController> logger, ISportCountryRepository sportcountryRepository)
 {
     _logger = logger;
     _sportcountryRepository = sportcountryRepository;
 }
 public SportCountryService(ISportCountryRepository sportCountry, IAssociationsBsLogic associationsBsLogic)
 {
     _sportCountry        = sportCountry;
     _associationsBsLogic = associationsBsLogic;
 }
 public CountryController(ILogger <CountryController> logger, ISportCountryRepository countryrepository)
 {
     _logger            = logger;
     _countryRepository = countryrepository;
 }