initial add

This commit is contained in:
Jonathan Ouellette
2022-09-27 14:10:30 -07:00
parent 91fd8a50a9
commit 580e90f6a2
3941 changed files with 954648 additions and 19 deletions

View File

@ -0,0 +1,85 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
namespace Fab2ApprovalSystem.Models
{
[Serializable]
public class PartsRequest
{
public int PRNumber { get; set; }
public string Title { get; set; }
public DateTime CreateDate { get; set; }
public DateTime? SubmitDate { get; set; }
public DateTime? CloseDate { get; set; }
public int OriginatorID { get; set; }
public int RequestorID { get; set; }
public int TechLeadID { get; set; }
public string Description { get; set; }
public DateTime? LastUpdateDate { get; set; }
public int CurrentStep { get; set; }
public string Status { get; set; }
}
[Serializable]
public class PartsRequestAttachment
{
public int AttachmentID { set; get; }
public int PRNumber { get; set; }
public string FileName { get; set; }
public int UserID { get; set; }
public string UploadDate { get; set; }
}
[Serializable]
public class PartsRequestAttachmentList
{
public int AttachmentID { set; get; }
public int PRNumber { get; set; }
public string FileName { get; set; }
public int UserID { get; set; }
public string UploadDate { get; set; }
public string FullName { get; set; }
}
public class PartsRequestList
{
public int PRNumber { get; set; }
public string Title { get; set; }
public DateTime CreateDate { get; set; }
public DateTime SubmitDate { get; set; }
public DateTime CloseDate { get; set; }
public string Originator { get; set; }
public string Requestor { get; set; }
public string TechLead { get; set; }
public string Description { get; set; }
public string Status { get; set; }
public string PendingApprovers { get; set; }
}
public class MyPartsRequestList
{
public int PRNumber { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public DateTime CreateDate { get; set; }
public DateTime? SubmitDate { get; set; }
public DateTime? CloseDate { get; set; }
public string Originator { get; set; }
public string Requestor { get; set; }
public string TechLead { get; set; }
public string Status { get; set; }
public string PendingApprovers { get; set; }
public string WorkFlowStepName { get; set; }
}
}