aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.MachineDesigner.UI/ViewModels/MachinesViewVM.cs
blob: ce200ad8b20983202ea5530def33d6ec16a8fd18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.Commands;
using Tango.DAL.Observables;
using Tango.SharedUI;

namespace Tango.MachineStudio.UI.ViewModels
{
    public class MachinesViewVM : DbTableViewModel<Machine>
    {
        protected override void InitializeEntity(Machine entity)
        {
            base.InitializeEntity(entity);
            entity.ProductionDate = DateTime.Now;
        }
    }
}