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