public MenuCategoriasViewComponent(LicoreriaService repo)
 {
     this.repo = repo;
 }
Exemple #2
0
 public IdentityController(LicoreriaService repo)
 {
     this.repo = repo;
 }
Exemple #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;
 }