Employee bug

#pragma warning restore IDE0060
connectionCount
This commit is contained in:
2023-04-24 15:08:00 -07:00
parent cb8a14f5b8
commit 2cfddf6756
17 changed files with 54 additions and 72 deletions

View File

@ -35,12 +35,12 @@ public class WSRequest
[Obsolete("For json")] public WSRequest() { }
#pragma warning disable IDE0060
internal WSRequest(IFileRead fileRead, Logistics logistics, List<QS408M.Description> descriptions)
#pragma warning restore IDE0060
{
Id = 0;
FilePath = string.Empty;
if (fileRead is null)
{ }
CellName = logistics.MesEntity;
if (descriptions[0] is not QS408M.Description x)
throw new Exception();
@ -82,22 +82,10 @@ public class WSRequest
UniqueId = Details[0].HeaderUniqueId;
}
#pragma warning disable IDE0060
internal static void PostOpenInsightMetrologyViewerAttachments(IFileRead fileRead, Logistics logistics, string openInsightMetrologyViewerAPI, DateTime dateTime, string json, List<QS408M.Description> descriptions, string matchDirectory)
#pragma warning restore IDE0060
{
if (fileRead is null)
{ }
if (logistics is null)
{ }
if (openInsightMetrologyViewerAPI is null)
{ }
if (dateTime == DateTime.MinValue)
{ }
if (json is null)
{ }
if (descriptions is null)
{ }
if (matchDirectory is null)
{ }
}
}