Exemplo n.º 1
0
 public UsersController(IUsersService UserService, IUserCountryService UserCountry)
 {
     _Users       = UserService;
     _UserCountry = UserCountry;
 }
Exemplo n.º 2
0
 public CountryController(ICountryService CountryService, IUserCountryService UserCountryService)
 {
     _Country     = CountryService;
     _UserCountry = UserCountryService;
 }