36 lines
749 B
C#
36 lines
749 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.WTM_CUSTOMVMs
|
|||
|
|
{
|
|||
|
|
public partial class WTM_CUSTOMBatchVM : BaseBatchVM<WTM_CUSTOM, WTM_CUSTOM_BatchEdit>
|
|||
|
|
{
|
|||
|
|
public WTM_CUSTOMBatchVM()
|
|||
|
|
{
|
|||
|
|
ListVM = new WTM_CUSTOMListVM();
|
|||
|
|
LinkedVM = new WTM_CUSTOM_BatchEdit();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Class to define batch edit fields
|
|||
|
|
/// </summary>
|
|||
|
|
public class WTM_CUSTOM_BatchEdit : BaseVM
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
protected override void InitVM()
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|