Mike Phares b1c6903c1c Tasks 184281, 184799, 184800, 184801 and 184802
Align .editorconfig files

Move Controller logic to DMO classes

GlobalVars.AppSettings = Models.AppSettings.GetFromConfigurationManager();

Question EditorConfig
Project level editorconfig
Format White Spaces
AppSetting when EnvironmentVariable not set
Corrective Actions Tests
Schedule Actions Tests
DMO Tests
Controller Tests

Get ready to use VSCode IDE
2024-12-04 11:58:13 -07:00

21 lines
784 B
C#

using System.Collections.Generic;
namespace Fab2ApprovalSystem.Models;
public class AuditEdit {
public Audit Audit { get; set; }
public IEnumerable<AuditedArea> AuditAreaList { get; set; }
public List<string> AuditeeNames { get; set; }
public List<AuditFindingCategory> AuditFindingCategoryList { get; set; }
public IEnumerable<Auditor> AuditorList { get; set; }
public IEnumerable<AuditType> AuditTypeList { get; set; }
public IEnumerable<CANoList> CANoList { get; set; }
public string Is8DQA { get; set; }
public bool IsAdmin { get; set; }
public bool IsSubmitter { get; set; }
public List<AllUserModel> MesaUsers { get; set; }
public IEnumerable<CAUserList> UserList { get; set; }
public bool RedirectToAction { get; set; }
}