Пример #1
0
 public UsersController(IUsersService UserService, IUserCountryService UserCountry)
 {
     _Users       = UserService;
     _UserCountry = UserCountry;
 }
Пример #2
0
 public CountryController(ICountryService CountryService, IUserCountryService UserCountryService)
 {
     _Country     = CountryService;
     _UserCountry = UserCountryService;
 }