VEPROMS_UI / remove BouncyCastle

This commit is contained in:
2026-08-21 06:11:06 -04:00
parent 23a296df86
commit 0c3e4bb3e9
41 changed files with 2298 additions and 4704 deletions
@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using VEPROMS.CSLA.Library;
@@ -23,36 +19,22 @@ namespace VEPROMS
_MySessionInfo = SessionInfo.Get(_MyOwnerInfo.SessionID);
_MyUserInfo = ui;
}
private ProcedureInfo _MyProcedureInfo;
public ProcedureInfo MyProcedureInfo
{
get { return _MyProcedureInfo; }
}
private SectionInfo _MySectionInfo;
public SectionInfo MySectionInfo
{
get { return _MySectionInfo; }
}
private OwnerInfo _MyOwnerInfo;
public OwnerInfo MyOwnerInfo
{
get { return _MyOwnerInfo; }
}
private SessionInfo _MySessionInfo;
public SessionInfo MySessionInfo
{
get { return _MySessionInfo; }
}
private UserInfo _MyUserInfo;
public UserInfo MyUserInfo
{
get { return _MyUserInfo; }
}
StringBuilder sb = new StringBuilder();
private readonly ProcedureInfo _MyProcedureInfo;
public ProcedureInfo MyProcedureInfo => _MyProcedureInfo;
private readonly SectionInfo _MySectionInfo;
public SectionInfo MySectionInfo => _MySectionInfo;
private readonly OwnerInfo _MyOwnerInfo;
public OwnerInfo MyOwnerInfo => _MyOwnerInfo;
private readonly SessionInfo _MySessionInfo;
public SessionInfo MySessionInfo => _MySessionInfo;
private readonly UserInfo _MyUserInfo;
public UserInfo MyUserInfo => _MyUserInfo;
private void dlgCheckedOutProcedure_Load(object sender, EventArgs e)
{
if (MyProcedureInfo != null)
StringBuilder sb = new StringBuilder();
if (MyProcedureInfo != null)
sb.AppendLine(string.Format("The procedure {0} - {1}", MyProcedureInfo.DisplayNumber, MyProcedureInfo.DisplayText));
else
sb.AppendLine(string.Format("The document {0}", MySectionInfo.DisplayText));
@@ -74,7 +56,8 @@ namespace VEPROMS
private void btnForce_Click(object sender, EventArgs e)
{
MySessionInfo.CheckInItem(MyOwnerInfo.OwnerID);
StringBuilder sb = new StringBuilder();
MySessionInfo.CheckInItem(MyOwnerInfo.OwnerID);
sb.AppendLine();
sb.AppendLine("Forced Check In has been completed");
lblInfo.Text = sb.ToString();