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