Files
StructureHelper/StructureHelperCommon/Infrastructures/Interfaces/IRepositoryOperation.cs
Evgeny Redikultsev f937b9f373 Change field viewer
2025-12-13 20:13:45 +05:00

14 lines
297 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace StructureHelperCommon.Infrastructures.Interfaces
{
public interface IRepositoryOperation<T, V>
{
void RemoveAll();
void Remove(V entity);
void Remove(IEnumerable<V> entities);
}
}