12345678910111213141516171819202122232425262728 |
- using System;
- using System.CodeDom;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Media;
- namespace DB
- {
- public partial class Service
- {
- public SolidColorBrush BGColor
- {
- get
- {
- if(Cost < 1500)
- {
- return Brushes.Blue;
- }
- else
- {
- return Brushes.Red;
- }
- }
- }
- }
- }
|