aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/MachineVersionsViewVM.cs
blob: d00fd159392ea900066c2ab120a4527cc9d29e15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 MachineVersionsViewVM : DbTableViewModel<MachineVersion>
    {
        public MachineVersionsViewVM(INotificationProvider notification) : base(notification)
        {
            
        }
    }
}
mon; using Tango.MachineStudio.Synchronization.Views; using Tango.SharedUI.Helpers; namespace Tango.MachineStudio.Synchronization { /// <summary> /// Represents a Machine Studio module capable of comparing and synchronizing machines data against Twine remote database. /// </summary> /// <seealso cref="Tango.MachineStudio.Common.IStudioModule" /> [StudioModule(6)] public class SynchronizationModule : StudioModuleBase { /// <summary> /// Gets the module name. /// </summary> public override string Name => "Synchronization"; /// <summary> /// Gets the module description. /// </summary> public override string Description => "Perform local to local or remote to local database synchronization."; /// <summary> /// Gets the module cover image. /// </summary> public override BitmapSource Image => ResourceHelper.GetImageFromResources("Images/synchronization.jpg"); /// <summary> /// Gets the module entry point view type. /// </summary> public override Type MainViewType { get { return typeof(MainView); } } /// <summary> /// Gets the permission required to see and load this module. /// </summary> public override Permissions Permission => Permissions.RunSynchronizationModule; /// <summary> /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. /// </summary> public override void Dispose() { } } }