public RestaurantesController(IRestauranteService service)
 {
     this._service = service;
 }
示例#2
0
 public RestauranteController(IRestauranteService service)
 {
     _restauranteService = service;
 }
示例#3
0
 public RestaurantesController(IRestauranteService restauranteService)
 {
     _restauranteService = restauranteService;
 }
示例#4
0
 public RestauranteAppService(IRestauranteService restauranteService)
     : base(restauranteService)
 {
     _restauranteService = restauranteService;
 }
示例#5
0
 public PedidoController(IPedidoService pedidoService, IRestauranteService restauranteService, IProdutoService produtoService)
 {
     this._pedidoService      = pedidoService;
     this._restauranteService = restauranteService;
     this._produtoService     = produtoService;
 }