public DataGridRowReorderingController(IHttpContextAccessor httpContextAccessor, IMemoryCache memoryCache)
 {
     _context = new InMemoryTasksDataContext(httpContextAccessor, memoryCache);
 }
 public TreeListTasksController(IHttpContextAccessor httpContextAccessor, IMemoryCache memoryCache)
 {
     db = new InMemoryTasksDataContext(httpContextAccessor, memoryCache);
 }
Ejemplo n.º 3
0
 public DataGridCustomEditorsController(IHttpContextAccessor httpContextAccessor, IMemoryCache memoryCache)
 {
     _context = new InMemoryTasksDataContext(httpContextAccessor, memoryCache);
 }