public TeaController(ITeaService service) { this._service = service; }
public TeaController() { teaService = new TeaServiceClient(); countryService = new CountryServiceClient(); }
public TeaApiController(ITeaService teaService) { _teaService = teaService; }