Files
.Data
.kanbn
.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
ISpreadingResistanceProfileController.cs
ISpreadingResistanceProfileService.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
oi-metrology/Shared/Models/Stateless/IReactorsController.cs
Mike Phares 70c1e1a52a Updated azure-pipelines-server.yml
Changed to thunderclient to messa017
Nuget Bump
Scan Helper
2023-04-17 14:23:46 -07:00

14 lines
243 B
C#

namespace OI.Metrology.Shared.Models.Stateless;
public interface IReactorsController<T>
{
enum Action : int
{
Get = 0
}
static string GetRouteName() => nameof(IReactorsController<T>)[1..^10];
T Get(bool even);
}