aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Scripting/Tango.Scripting/Properties/AssemblyInfo.cs
blob: 1fd19cced4ccd49638ef0524fa09251d098deff1 (plain)
1
2
3
4
5
6
7
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("Tango - Scripting Library")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("2.0.36.1608")]
olor: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
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.BL.Entities;
using Tango.MachineStudio.Common.Notifications;
using Tango.SharedUI;

namespace Tango.MachineStudio.DB.ViewModels
{
    public class MachinesViewVM : DbTableViewModel<Machine>
    {
        public MachinesViewVM(INotificationProvider notification) : base(notification)
        {
        }

        protected override void InitializeEntity(Machine entity)
        {
            base.InitializeEntity(entity);
            entity.ProductionDate = DateTime.UtcNow;
        }
    }
}