You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
667 B
23 lines
667 B
using NFine.Data;
|
|
using NFine.Domain.Entity.SystemManage;
|
|
using NFine.Domain.IRepository.SystemManage;
|
|
using NFine.Repository.SystemManage;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NFine.Repository.SystemManage
|
|
{
|
|
public class ModuleButtonRepository : RepositoryBase<ModuleButtonEntity>, IModuleButtonRepository
|
|
{
|
|
public void SubmitCloneButton(List<ModuleButtonEntity> entitys)
|
|
{
|
|
using (var db = new RepositoryBase().BeginTrans())
|
|
{
|
|
foreach (var item in entitys)
|
|
{
|
|
db.Insert(item);
|
|
}
|
|
db.Commit();
|
|
}
|
|
}
|
|
}
|
|
}
|