public MenuCategoriasViewComponent(LicoreriaService repo)
 {
     this.repo = repo;
 }
Ejemplo n.º 2
0
 public IdentityController(LicoreriaService repo)
 {
     this.repo = repo;
 }
Ejemplo n.º 3
0
 public UsuariosController(LicoreriaService repo)
 {
     this.repo = repo;
 }
 public PedidosController(LicoreriaService repo)
 {
     this.repo = repo;
 }
 public ProductosController(LicoreriaService repo, ImagesService imagesService)
 {
     this.repo          = repo;
     this.ImagesService = imagesService;
 }