Beispiel #1
0
 public RestauranteController(IRestauranteServices restauranteServices)
 {
     RestauranteServices = restauranteServices;
 }
 public VotarController(IUsuarioServices usuarioServices, IVotacaoServices votacaoServices, IRestauranteServices restauranteServices)
 {
     UsuarioServices     = usuarioServices;
     VotacaoServices     = votacaoServices;
     RestauranteServices = restauranteServices;
 }