using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RoboforkApp.AWS.Contracts { public interface ITableDataService { void Store(T item) where T : new(); void BatchStore(IEnumerable items) where T : class; IEnumerable GetAll() where T : class; T GetItem(string key) where T : class; } }