Helper.cs 858 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. namespace Cashier
  8. {
  9. public class Helper
  10. {
  11. public static void ErrorMessage(string message)
  12. {
  13. MessageBox.Show(message, "Ошибка", MessageBoxButton.OK, MessageBoxImage.Error);
  14. }
  15. public static void InformationMessage(string message)
  16. {
  17. MessageBox.Show(message, "Информация", MessageBoxButton.OK, MessageBoxImage.Information);
  18. }
  19. public static int IDStore { get; set; }
  20. public static int IDCashier { get; set; }
  21. public static string NumberEmployee { get; set; }
  22. public static int? WorkShiftID { get; set; }
  23. public static List<RootDataOfProductInStore> ProductInStore {get;set;}
  24. }
  25. }