36 lines
765 B
C#
36 lines
765 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_BUSINESSVMs
|
|
{
|
|
public partial class WTM_BUSINESSBatchVM : BaseBatchVM<WTM_BUSINESS, WTM_BUSINESS_BatchEdit>
|
|
{
|
|
public WTM_BUSINESSBatchVM()
|
|
{
|
|
ListVM = new WTM_BUSINESSListVM();
|
|
LinkedVM = new WTM_BUSINESS_BatchEdit();
|
|
}
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// Class to define batch edit fields
|
|
/// </summary>
|
|
public class WTM_BUSINESS_BatchEdit : BaseVM
|
|
{
|
|
|
|
protected override void InitVM()
|
|
{
|
|
}
|
|
|
|
}
|
|
|
|
}
|