纽威
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.
 
 
 
 
 

52 lines
1.4 KiB

using NFine.Code;
using NFine.Domain.Entity.SystemManage;
using NFine.Domain.IRepository.SystemManage;
using NFine.Repository.SystemManage;
using System;
using System.Collections.Generic;
using System.Linq;
namespace NFine.Application.SystemManage
{
public class ModuleApp
{
private IModuleRepository service = new ModuleRepository();
public List<ModuleEntity> GetList()
{
return service.IQueryable().Where(a => a.systems == "SRM").OrderBy(t => t.F_SortCode).ToList();
}
public ModuleEntity GetForm(string keyValue)
{
return service.FindEntity(keyValue);
}
public void DeleteForm(string keyValue)
{
if (service.IQueryable().Count(t => t.F_ParentId.Equals(keyValue)) > 0)
{
throw new Exception("删除失败!操作的对象包含了下级数据。");
}
else
{
service.Delete(t => t.F_Id == keyValue);
}
}
public void SubmitForm(ModuleEntity moduleEntity, string keyValue)
{
if (!string.IsNullOrEmpty(keyValue))
{
moduleEntity.Modify(keyValue);
service.Update(moduleEntity);
}
else
{
moduleEntity.systems = "SRM";
moduleEntity.Create();
service.Insert(moduleEntity);
}
}
}
}