From dce673898d2a54a02c0f3bb62a5bbb3cb2508dd8 Mon Sep 17 00:00:00 2001 From: ultrageese Date: Mon, 30 Mar 2026 11:59:40 +1000 Subject: [PATCH] =?UTF-8?q?=D1=8F=20=D1=87=D1=91=D1=82=D0=BE=20=D1=81?= =?UTF-8?q?=D0=B4=D0=B5=D0=BB=D0=B0=D0=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AutoService/ViewModels/ReceiptWindowVM.cs | 6 ++++++ AutoService/Views/ReceiptWindow.axaml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/AutoService/ViewModels/ReceiptWindowVM.cs b/AutoService/ViewModels/ReceiptWindowVM.cs index 18c8c25..b92415d 100644 --- a/AutoService/ViewModels/ReceiptWindowVM.cs +++ b/AutoService/ViewModels/ReceiptWindowVM.cs @@ -1,5 +1,6 @@ using AutoService.Models; using CommunityToolkit.Mvvm.ComponentModel; +using CommunityToolkit.Mvvm.Input; using System; using System.Collections.Generic; using System.Collections.ObjectModel; @@ -42,6 +43,11 @@ namespace AutoService.ViewModels TotalPrice = sumPrice * (1-discount); + } + [RelayCommand] + public void ProceedTransaction() + { + } } } diff --git a/AutoService/Views/ReceiptWindow.axaml b/AutoService/Views/ReceiptWindow.axaml index 3e69a88..2f5deb1 100644 --- a/AutoService/Views/ReceiptWindow.axaml +++ b/AutoService/Views/ReceiptWindow.axaml @@ -28,6 +28,6 @@ - +