aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/ConfigurationsViewVM.cs
blob: d5022c761094ea3159a212e4b1d81b13f74d3919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ConfigurationsViewVM : DbTableViewModel<Configuration>
    {
        public ConfigurationsViewVM(INotificationProvider notification) : base(notification)
        {
            
        }

        protected override void InitializeEntity(Configuration entity)
        {
            base.InitializeEntity(entity);
        }
    }
}
n>_isVisibleInMenu = true; /// <summary> /// Gets a value indicating whether this module should be displayed in the application menu. /// </summary> public bool IsVisibleInMenu { get { return _isVisibleInMenu; } protected set { _isVisibleInMenu = value; RaisePropertyChangedAuto(); } } /// <summary> /// Gets the module name. /// </summary> public abstract string Name { get; } /// <summary> /// Gets the module description. /// </summary> public abstract string Description { get; } /// <summary> /// Gets the module cover image. /// </summary> public abstract BitmapSource Image { get; } /// <summary> /// Gets the module entry point view type. /// </summary> public abstract Type MainViewType { get; } /// <summary> /// Gets the permission required to see and load this module. /// </summary> public abstract Permissions Permission { get; } /// <summary> /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. /// </summary> public abstract void Dispose(); /// <summary> /// Called when the application has entered the technician mode. /// </summary> public virtual void OnTechnicianEntered() { } /// <summary> /// Called when the application has exited the technician mode. /// </summary> public virtual void OnTechnicianExited() { } } }