using System.Collections.Generic; using System.Threading.Tasks; namespace HanyadikHetVan.Interface { public interface IRepository { public Task Create(T _object); public void Update(T _object); public IEnumerable GetAll(); public T GetById(int Id); public void Delete(T _object); } }