public DataGridRowReorderingController(IHttpContextAccessor httpContextAccessor, IMemoryCache memoryCache)
 {
     _context = new InMemoryTasksDataContext(httpContextAccessor, memoryCache);
 }
 public TreeListTasksController(IHttpContextAccessor httpContextAccessor, IMemoryCache memoryCache)
 {
     db = new InMemoryTasksDataContext(httpContextAccessor, memoryCache);
 }
Пример #3
0
 public DataGridCustomEditorsController(IHttpContextAccessor httpContextAccessor, IMemoryCache memoryCache)
 {
     _context = new InMemoryTasksDataContext(httpContextAccessor, memoryCache);
 }