using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace DTOToEntity { public interface IService { Task> Gets(int index, int count); Task GetById(object id); Task Add( T group); Task Delete(object id); Task Update(T group); } }