Exemplo n.º 1
0
 public InventarRepository(IHelperContext context)
 {
     _context = context;
 }
Exemplo n.º 2
0
        //public string Id { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }

        public Repository(IHelperContext <TEntity> helperContext, IHelperModelBase helperModelBase)
        {
            _helperContext   = helperContext;
            _helperModelBase = helperModelBase;
        }
Exemplo n.º 3
0
 /// <summary>
 /// constructor for injection
 /// </summary>
 /// <param name="context"></param>
 public UserRepository(IHelperContext context)
 {
     _context = context;
 }