ICache.cs 307 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Cache
  7. {
  8. public interface ICache
  9. {
  10. void DeleteTable(string Table);
  11. void Insert(string Table, Object Data);
  12. T Get<T>(string table);
  13. }
  14. }