using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Threading.Tasks; namespace ViraScraper.Repositories { public interface IRepositoryBase { IQueryable GetAll(); IQueryable GetAll(Expression> expression); void Insert(T entity); void InsertS(T entity); void InsertRang(IEnumerable entitys); void InsertSRang(IEnumerable entitys); void Update(T entity); void Remove(T entity); } }