Ready to Test

This commit is contained in:
2022-07-26 09:34:09 -07:00
commit 2afec95704
1004 changed files with 164796 additions and 0 deletions

View File

@ -0,0 +1,18 @@
namespace OI.Metrology.Shared.DataModels;
public class AwaitingDispo
{
public string? PK { get; set; }
public string? Title { get; set; }
public int ID { get; set; }
public int ToolTypeID { get; set; }
public string? ToolType { get; set; }
public string? Tool { get; set; }
public string? Reactor { get; set; }
public string? RDS { get; set; }
public string? PSN { get; set; }
public string? Layer { get; set; }
public string? Zone { get; set; }
public DateTime InsertDate { get; set; }
public DateTime Expiration { get; set; }
}

View File

@ -0,0 +1,11 @@
namespace OI.Metrology.Shared.DataModels;
public class HeaderCommon
{
public long ID { get; set; }
public DateTime InsertDate { get; set; }
public Guid AttachmentID { get; set; }
public string? Title { get; set; }
public string? Recipe { get; set; }
public DateTime Date { get; set; }
}

View File

@ -0,0 +1,12 @@
namespace OI.Metrology.Shared.Models;
public class SelectListGroup
{
public bool Disabled { get; set; }
public string? Name { get; set; }
public SelectListGroup()
{ }
}

View File

@ -0,0 +1,36 @@
namespace OI.Metrology.Shared.Models;
public class SelectListItem
{
public bool Disabled { get; set; }
public SelectListGroup? Group { get; set; }
public bool Selected { get; set; }
public string? Text { get; set; }
public string? Value { get; set; }
public SelectListItem()
{ }
public SelectListItem(string text, string value)
{
Text = text;
Value = value;
}
public SelectListItem(string text, string value, bool selected)
{
Text = text;
Value = value;
Selected = selected;
}
public SelectListItem(string text, string value, bool selected, bool disabled)
{
Text = text;
Value = value;
Selected = selected;
Disabled = disabled;
}
}

View File

@ -0,0 +1,28 @@
namespace OI.Metrology.Shared.DataModels;
public class ToolType
{
public int ID { get; set; }
public string? ToolTypeName { get; set; }
public bool HasHeaderAttachments { get; set; }
public bool HasDataAttachments { get; set; }
public string? HeaderTableName { get; set; }
public string? DataTableName { get; set; }
public string? ExportSPName { get; set; }
public string? HeaderGridAttributes { get; set; }
public string? DataGridAttributes { get; set; }
public string? DataGridSortBy { get; set; }
public string? DataGridStatsColumn { get; set; }
public string? DataGridStatsStdDevType { get; set; }
public string? DisplayHeaderAttachment { get; set; }
public string? DisplayDataAttachment { get; set; }
public string? OIExportSPName { get; set; }
}

View File

@ -0,0 +1,13 @@
namespace OI.Metrology.Shared.DataModels;
public class ToolTypeMetadata
{
public int ToolTypeID { get; set; }
public bool Header { get; set; }
public string? ApiName { get; set; }
public string? ColumnName { get; set; }
public string? DisplayTitle { get; set; }
public int GridDisplayOrder { get; set; }
public string? GridAttributes { get; set; }
public int TableDisplayOrder { get; set; }
}