DepartmentProject/DepartmentPortal/Common/ToolsDesktop/MainControls/MainControlViewEntityElement.cs

47 lines
1.4 KiB
C#
Raw Normal View History

2022-03-20 10:10:44 +04:00
using System;
using System.Windows.Forms;
2022-03-20 10:10:44 +04:00
using ToolsDesktop.Interfaces;
using ToolsDesktop.Models;
using ToolsModule.ManagmentSecurity;
2022-03-18 22:48:14 +04:00
namespace ToolsDesktop.Controls
{
public partial class MainControlViewEntityElement : UserControl, IControl, IControlChildEntity
{
/// <summary>
/// Методы для реализации в generic-контроле
/// </summary>
protected IControlViewEntityElement _controlViewEntityElement;
#region IControlEntity
public Guid ControlId { get; protected set; }
public string Title { get; protected set; }
public AccessOperation AccessOperation { get; protected set; }
public void Open(ControlOpenModel model) => _controlViewEntityElement?.OpenControl(model);
public IControl GetInstance() => _controlViewEntityElement?.GetInstanceControl();
public string SaveToXml() => _controlViewEntityElement?.SaveControlToXml();
public void LoadFromXml(string xml) => _controlViewEntityElement?.LoadControlFromXml(xml);
#endregion
#region IControlChildEntity
public string ParentPropertyName { get; set; }
public Guid? ParentId { get; set; }
public object ParentObject { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
#endregion
/// <summary>
/// Констркутор
/// </summary>
public MainControlViewEntityElement() => InitializeComponent();
}
}