Example #1
0
 public ProductosController(IRepositoryLicoreria repo)
 {
     this.repo = repo;
 }
Example #2
0
 public UsuariosController(IRepositoryLicoreria repo)
 {
     this.repo = repo;
 }
Example #3
0
 public AuthController(IRepositoryLicoreria repo
                       , IConfiguration configuration)
 {
     this.helper = new HelperToken(configuration);
     this.repo   = repo;
 }
Example #4
0
 public CategoriasController(IRepositoryLicoreria repo)
 {
     this.repo = repo;
 }
 public PedidosController(IRepositoryLicoreria repo)
 {
     this.repo = repo;
 }