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 cy_scdz.Model.Oder; namespace cy_scdz.ViewModel.Order.OrderProductionVMs { public partial class OrderProductionBatchVM : BaseBatchVM { public OrderProductionBatchVM() { ListVM = new OrderProductionListVM(); LinkedVM = new OrderProduction_BatchEdit(); } } /// /// Class to define batch edit fields /// public class OrderProduction_BatchEdit : BaseVM { protected override void InitVM() { } } }