.Data
.vscode
Archive
Server
Shared
DataModels
Infineon
Models
Stateless
IAppSettingsController.cs
IAppSettingsRepository.cs
IAwaitingDispoController.cs
IClientSettingsController.cs
IClientSettingsRepository.cs
IExportController.cs
IExportRepository.cs
IInboundController.cs
IInboundRepository.cs
IInfinityQSController.cs
IInfinityQSRepository.cs
IInfinityQSV2Controller.cs
IInfinityQSV2Repository.cs
IMethodName.cs
IMetrologyRepository.cs
IPinController.cs
IPinRepository.cs
IReactorsController.cs
IReactorsRepository.cs
IServiceShopOrder.cs
IServiceShopOrderController.cs
IServiceShopOrderRepository.cs
IToolTypesController.cs
IToolTypesRepository.cs
IWorkMaterialController.cs
IWorkMaterialRepository.cs
ServiceShopOrder.cs
AdditionalData.cs
AllowedActions.cs
Booking.cs
Catalog.cs
DataResponse.cs
IWorkingDirectory.cs
Order.cs
Price.cs
Service.cs
ServiceShop.cs
WorkingDirectory.cs
Repositories
Services
ViewModels
OI.Metrology.Shared.csproj
Tests
View
.editorconfig
.gitignore
OI-Metrology.sln
README.md
azure-pipelines-server-development.yml
azure-pipelines-server.yml
package.json
18 lines
479 B
C#
18 lines
479 B
C#
namespace OI.Metrology.Shared.Models.Stateless;
|
|
|
|
public interface IInfinityQSController<T>
|
|
{
|
|
|
|
enum Action : int
|
|
{
|
|
Index = 0,
|
|
MarkAsPinned = 1
|
|
}
|
|
|
|
static string GetRouteName() => nameof(IInfinityQSController<T>)[1..^10];
|
|
T GetCommandText(string sub_group_id, string process, string job, string part, string lot, string date_time);
|
|
T GetData(string sub_group_id);
|
|
T GetEvents(string sub_group_id);
|
|
T GetHeader(string sub_group_id);
|
|
|
|
} |