public AccountController( IMemoryCache cache, DTContext context ) { _cache = cache; _context = context; }
public FileMgmtController( DTContext context, IHostingEnvironment host, IHostingEnvironment hostingEnvironment ) { _host = host; _context = context; _hostingEnvironment = hostingEnvironment; }
public ApiCoreController( DTContext context) { _context = context; }
public DTRepository(IOptions <DTSettings> settings) { _context = new DTContext(settings); }
public BillRepository(DTContext context) : base(context) { }
public IsgrcController( DTContext context) { _context = context; }
public InterestRepository(DTContext context) : base(context) { }
public ClassMgmtController( DTContext context) { _context = context; }
public WebApiController() { _context = new DTContext(); }
public RepositoryBase(DTContext contexto) { _context = contexto; _dbSet = _context.Set <TEntity>(); }
public CRUDclass(DTContext myObj) { _context = myObj; }