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.
50 lines
1.3 KiB
50 lines
1.3 KiB
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 AreaApp
|
|
{
|
|
private IAreaRepository service = new AreaRepository();
|
|
|
|
public List<AreaEntity> GetList()
|
|
{
|
|
return service.IQueryable().ToList();
|
|
}
|
|
|
|
public AreaEntity 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(AreaEntity areaEntity, string keyValue)
|
|
{
|
|
if (!string.IsNullOrEmpty(keyValue))
|
|
{
|
|
areaEntity.Modify(keyValue);
|
|
service.Update(areaEntity);
|
|
}
|
|
else
|
|
{
|
|
areaEntity.Create();
|
|
service.Insert(areaEntity);
|
|
}
|
|
}
|
|
}
|
|
}
|