36 lines
789 B
C#
36 lines
789 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using WalkingTec.Mvvm.Core;
|
|||
|
|
using WalkingTec.Mvvm.Core.Extensions;
|
|||
|
|
using wtmProject.Model;
|
|||
|
|
|
|||
|
|
|
|||
|
|
namespace wtmProject.ViewModel._Admin.FrameworkCustomVMs
|
|||
|
|
{
|
|||
|
|
public partial class FrameworkCustomBatchVM : BaseBatchVM<FrameworkCustom, FrameworkCustom_BatchEdit>
|
|||
|
|
{
|
|||
|
|
public FrameworkCustomBatchVM()
|
|||
|
|
{
|
|||
|
|
ListVM = new FrameworkCustomListVM();
|
|||
|
|
LinkedVM = new FrameworkCustom_BatchEdit();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Class to define batch edit fields
|
|||
|
|
/// </summary>
|
|||
|
|
public class FrameworkCustom_BatchEdit : BaseVM
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
protected override void InitVM()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|