ColorClass.cs 541 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.CodeDom;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows.Media;
  8. namespace DB
  9. {
  10. public partial class Service
  11. {
  12. public SolidColorBrush BGColor
  13. {
  14. get
  15. {
  16. if(Cost < 1500)
  17. {
  18. return Brushes.Blue;
  19. }
  20. else
  21. {
  22. return Brushes.Red;
  23. }
  24. }
  25. }
  26. }
  27. }