public RestauranteController(IRestauranteApplicationService service, IUsuarioApplicationService serviceUsuario)
 {
     this._service        = service;
     this._serviceUsuario = serviceUsuario;
 }
 public RestauranteController(IRestauranteApplicationService service)
 {
     this._service = service;
 }
 public PratoController(IPratoApplicationService service, IRestauranteApplicationService serviceRestaurante)
 {
     this._service            = service;
     this._serviceRestaurante = serviceRestaurante;
 }