hn-dotnet/BuildingBlocks/IRepository.cs
2020-12-01 20:30:17 +01:00

10 lines
167 B
C#

using System;
namespace HN.BuildingBlocks
{
public interface IRepository<T> where T : class
{
Task AddAsync(params T[] entities);
}
}