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