mh_custom/wtmProject.ViewModel/_Admin/WTM_CUSTOMVMs/WTM_CUSTOMVM.cs

42 lines
878 B
C#
Raw Permalink Normal View History

2024-05-16 17:30:33 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.ComponentModel.DataAnnotations;
using WalkingTec.Mvvm.Core;
using WalkingTec.Mvvm.Core.Extensions;
using wtmProject.Model;
namespace wtmProject.ViewModel._Admin.WTM_CUSTOMVMs
{
public partial class WTM_CUSTOMVM : BaseCRUDVM<WTM_CUSTOM>
{
public WTM_CUSTOMVM()
{
SetInclude(x => x.Area);
SetInclude(x => x.CustomPerson);
}
protected override void InitVM()
{
}
public override void DoAdd()
{
base.DoAdd();
}
public override void DoEdit(bool updateAllFields = false)
{
base.DoEdit(updateAllFields);
}
public override void DoDelete()
{
base.DoDelete();
}
}
}