12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- namespace Cashier
- {
- public class Helper
- {
- public static void ErrorMessage(string message)
- {
- MessageBox.Show(message, "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
- }
- public static void InformationMessage(string message)
- {
- MessageBox.Show(message, "Информация", MessageBoxButton.OK, MessageBoxImage.Information);
- }
- public static int IDStore { get; set; }
- public static int IDCashier { get; set; }
- public static string NumberEmployee { get; set; }
- public static int? WorkShiftID { get; set; }
- public static List<RootDataOfProductInStore> ProductInStore {get;set;}
- }
- }
|