qol: remove this
This commit is contained in:
@@ -79,9 +79,9 @@ namespace Disco.Models.Repository
|
||||
#region Helper Members
|
||||
public decimal JobComponentsTotalCost()
|
||||
{
|
||||
if (this.JobComponents != null)
|
||||
if (JobComponents != null)
|
||||
{
|
||||
return this.JobComponents.Sum(jc => jc.Cost);
|
||||
return JobComponents.Sum(jc => jc.Cost);
|
||||
}
|
||||
return decimal.Zero;
|
||||
}
|
||||
|
||||
@@ -30,7 +30,7 @@ namespace Disco.Models.Repository
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return this.Description;
|
||||
return Description;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ namespace Disco.Models.Repository
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return this.Description;
|
||||
return Description;
|
||||
}
|
||||
|
||||
public static class JobTypeIds
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Disco.Models.Repository
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return this.Name;
|
||||
return Name;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user