aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/FiberSynthsViewVM.cs
blob: 861ca0f3f63b81d95dd838a77d250d3e3769bdb6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 FiberSynthsViewVM : DbTableViewModel<FiberSynth>
    {
        public FiberSynthsViewVM(INotificationProvider notification) : base(notification)
        {
        }
    }
}
n class="w"> Tango.MachineStudio.Logging.Views; using Tango.SharedUI.Helpers; namespace Tango.MachineStudio.Logging { [StudioModule(5)] public class LoggingModule : StudioModuleBase { public override string Name { get { return "Logging"; } } public override string Description { get { return "Monitor real-time machine hardware/software events and logs."; } } public override BitmapSource Image { get { return ResourceHelper.GetImageFromResources("Images/logging-module.png"); } } /// <summary> /// Gets the module entry point view type. /// </summary> public override Type MainViewType { get { return typeof(MainView); } } public override Permissions Permission { get { return Permissions.RunTechnicianModule; } } public override void Dispose() { } } }