Layer with EpiProTempVerificationRows

This commit is contained in:
2023-11-14 10:27:21 -07:00
parent cff2e06f68
commit 7e16ee7f98
8 changed files with 182 additions and 49 deletions

View File

@ -14,6 +14,7 @@ public interface IInfinityQSV3Controller<T>
T GetHeader(string sub_group_id);
T GetDescriptors(string sub_group_id);
T GetEpiProTempVerification(int[] night);
T GetEpiProTempVerificationRows(int[] night);
T GetProductDataAverageSumOfDefectsProcessMeanProcessSigma(string process, string? recipe);
T GetCommandText(string sub_group_id, string process, string job, string part, string lot, string date_time);

View File

@ -12,6 +12,7 @@ public interface IInfinityQSV3Repository
Result<InfinityQSV3[]> GetHeader(string subGroupId);
string GetCommandText(string process, string? part);
string GetCommandText(List<string> eppReactorNumbers);
List<string[]> GetEpiProTempVerificationRows(int[] night);
Result<InfinityQSDescriptorV3[]> GetDescriptors(string subGroupId);
string GetProductDataAverageSumOfDefectsProcessMeanProcessSigma(string process, string? recipe);
string GetCommandText(string? subGroupId, string? process, string? job, string? part, string? lot, string? dateTime);