|
using taloyhtio.idp.parser.common.domain;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace taloyhtio.idp.parser.common.repository
|
|
{
|
|
interface IBaseRepository<T> where T: Entity
|
|
{
|
|
Task<T> SaveChanges(T entity, bool skipEntitySaving = false);
|
|
Task DeleteEntityAsync(T deleteEntity);
|
|
}
|
|
}
|