Ready to test new column

This commit is contained in:
2025-01-13 16:56:42 -07:00
committed by Tucker Chase (CSC FI SPS MESLEO)
parent 123bbdb9fe
commit 1b22ffa439
20 changed files with 315 additions and 155 deletions

View File

@ -55,8 +55,8 @@ public class CorrectiveActionDMOTests {
private static void CorrectiveActionDMO(ILogger? logger, AppSettings appSettings) {
#pragma warning disable IDE0059
SetGlobalVars(logger, appSettings);
CorrectiveActionDMO correctiveActionDMO = new(appSettings);
// void ApproveSection(int issueID, int userID, string DSection);
CorrectiveActionDMO correctiveActionDMO = new();
// void ApproveSection(int issueID, appSettings.UserId, string DSection);
// void DeleteCAAttachment(int attachmentID);
// void DeleteD3ContainmentActionItem(int d3ContainmentActionID);
// void DeleteD5D6CorrectivetAction(int d5d6CAID);
@ -67,8 +67,8 @@ public class CorrectiveActionDMOTests {
// IEnumerable<CA_Attachment> GetCAAttachmentsList(int caNo, string section);
CAD3D5D7Due[] cAD3D5D7Dues = correctiveActionDMO.GetCAD3D5D7Due().ToArray();
// IEnumerable<CA_Attachment> GetCAFindingsItemAttachments(int caFindingsID);
// CorrectiveAction GetCAItem(int caNo, int userID);
// CorrectiveAction GetCAItemReadOnly(int caNo, int userID);
// CorrectiveAction GetCAItem(int caNo, appSettings.UserId);
// CorrectiveAction GetCAItemReadOnly(int caNo, appSettings.UserId);
// IEnumerable<CASectionApproval> GetCASectionApprovalLog(int caNo);
CASource[] cASources = correctiveActionDMO.GetCASourceList().ToArray();
// IEnumerable<D3ContainmentAction> GetD3ContainmentActions(int caNo);
@ -89,17 +89,17 @@ public class CorrectiveActionDMOTests {
// void InsertD3ContainmentAction(D3ContainmentAction model);
// void InsertD5D6CorrectivetAction(D5D6CorrectivetAction model);
// void InsertD7PreventiveAction(D7PreventiveAction model);
// bool IsAIAssignee(int userId, int caId);
// bool IsAIAssignee(appSettings.UserId, int caId);
// bool IsLastSectionApprover(int caNo, string dSection);
// bool IsUserSectionApprover(int issueId, int userId);
// void RejectSection(int issueID, int userID, string DSection, string comments);
// void ReleaseLockOnDocument(int userID, int issueID);
// bool IsUserSectionApprover(int issueId, appSettings.UserId);
// void RejectSection(int issueID, appSettings.UserId, string DSection, string comments);
// void ReleaseLockOnDocument(appSettings.UserId, int issueID);
// DateTime SetCAComplete(int issueID);
// DateTime SetCAD3DueDate(int issueID);
// DateTime SetCAD5D7DueDate(int issueID);
// void SetD3D5D7NotificationDate(int caNo, string section);
// int StartApproval(int issueID, int userID, int worlflowNumber);
// void StartSectionApproval(int issueID, int userID, string DSection);
// int StartApproval(int issueID, appSettings.UserId, int worlflowNumber);
// void StartSectionApproval(int issueID, appSettings.UserId, string DSection);
// void UpdateCorrectiveAction(CorrectiveAction model);
// void UpdateD3ContainmentAction(D3ContainmentAction model);
// void UpdateD5D6CorrectivetAction(D5D6CorrectivetAction model);