aboutsummaryrefslogtreecommitdiffstats
path: root/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/c0f81afc55b7001910f29a7c8b54f9ea
stat options
Period:
Authors:

Commits per author per week (path 'Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/c0f81afc55b7001910f29a7c8b54f9ea')

AuthorW25 2026W26 2026W27 2026W28 2026Total
Total00000
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;
        }
    }
}