using System.Collections.Generic; namespace Umbraco.Cms.Infrastructure.Persistence { public interface IBulkSqlInsertProvider { string ProviderName { get; } int BulkInsertRecords(IUmbracoDatabase database, IEnumerable records); } }