Beispiel #1
0
 public TreeListEmployeesController(IHttpContextAccessor httpContextAccessor, IMemoryCache memoryCache)
 {
     db = new InMemoryEmployeesDataContext(httpContextAccessor, memoryCache);
 }
Beispiel #2
0
 public DataGridEmployeesController(IHttpContextAccessor httpContextAccessor, IMemoryCache memoryCache)
 {
     _data = new InMemoryEmployeesDataContext(httpContextAccessor, memoryCache);
 }