Оставьте контакты
и мы свяжемся с вами в ближайшее время
This example shows a basic ASP.NET Core web API controller that exposes endpoints for retrieving and creating orders.
1. POST /api/orders → OrderSubmitted event 2. Saga starts → ReserveInventory command 3. InventoryService → InventoryReserved event (or Failed) 4. Saga → ProcessPayment command 5. PaymentService → PaymentSucceeded event (or Failed) 6. Saga → ConfirmOrder command + SendNotification
Notice: No using of IOrderService or IUserService . It is completely isolated.
return await _orderRepository.GetOrdersAsync();

ВАЖНО!Сначала установите ToolRequirements, и после Calibration Tools. Активируйте программу с помощью логина и пароля, который необходимо получить у вашего поставщика.
Внимание! Если после установки программного обеспечения плохо работает мышь, нужно установить следующий ПАТЧ. .net core microservices






This example shows a basic ASP.NET Core web API controller that exposes endpoints for retrieving and creating orders.
1. POST /api/orders → OrderSubmitted event 2. Saga starts → ReserveInventory command 3. InventoryService → InventoryReserved event (or Failed) 4. Saga → ProcessPayment command 5. PaymentService → PaymentSucceeded event (or Failed) 6. Saga → ConfirmOrder command + SendNotification
Notice: No using of IOrderService or IUserService . It is completely isolated.
return await _orderRepository.GetOrdersAsync();