Made everything except for repository interface be in the Umbraco.Cms.Infrastructure.Persistence namespace
11 lines
266 B
C#
11 lines
266 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Umbraco.Cms.Infrastructure.Persistence
|
|
{
|
|
public interface IBulkSqlInsertProvider
|
|
{
|
|
string ProviderName { get; }
|
|
int BulkInsertRecords<T>(IUmbracoDatabase database, IEnumerable<T> records);
|
|
}
|
|
}
|