I have several entities that have calculated fields on them such as TotalCost. Right now I have them all as properties but I'm wondering if they should actually be methods. Is there a C# standard for this?
public class WorkOrder
{
public int LaborHours { get; set; }
public decimal LaborRate { get; set; }
// Should this be LaborCost()?
public decimal LaborCost
{
get
{
return LaborHours * LaborRate;
}
}
}
this.beforeLaborHoursandLaborRate, but that's just for readability. – Ed Altorfer Jan 8 '10 at 20:54this.since my preference is that it reduces readability... :-) – Cellfish Jan 8 '10 at 21:07