using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DaSaSo.Domain.Services { public interface IDataService { Task> GetAll(); Task Get(int id); Task Create(T entity); T CreateNonAsync(T entity); Task Update(int id, T entity); Task Delete(int id); } }