Example #1
0
 public SalesOrderLineController(ApplicationDbContext context, IHttpContextAccessor httpContext, Services.IRepository pos)
 {
     _context     = context;
     _httpContext = httpContext;
     _pos         = pos;
 }
Example #2
0
 public SalesOrdersController(ApplicationDbContext context, Services.IRepository pos)
 {
     _context = context;
     _pos     = pos;
 }
Example #3
0
 public UsuarioController(Services.IRepository <Usuario> repo)
 {
     _repository = repo;
 }