data fetched from the database
I'm assuming your paid variable is
public bool Paid {get; set;}
Add new property in the class as
public string PaidStatus => Paid? "Already Paid" : "Not yet Paid";
And use PaidStatus property in the grid
thank will check
Обсуждают сегодня