using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Logging; using Tango.SharedUI; namespace Tango.MachineStudio.Synchronization.ViewModels { /// /// Represents the synchronization module main view, view model. /// /// public class MainViewVM : ViewModel { /// /// Initializes a new instance of the class. /// public MainViewVM() { Log = "Synchronization module started..."; } private String _log; /// /// Gets or sets the current application log text. /// public String Log { get { return _log; } set { _log = value; RaisePropertyChanged(nameof(Log)); } } } }
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.MachineStudio.Common.Notifications;

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