by validation date desc
This commit is contained in:
parent
569b5eb5fe
commit
9c95e5be38
1 changed files with 2 additions and 1 deletions
|
|
@ -42,7 +42,8 @@ namespace Yavsc.Controllers
|
||||||
.Include(e=>e.Query.PerformerProfile.Performer)
|
.Include(e=>e.Query.PerformerProfile.Performer)
|
||||||
.Where(
|
.Where(
|
||||||
e=>e.OwnerId == uid || e.ClientId == uid
|
e=>e.OwnerId == uid || e.ClientId == uid
|
||||||
).ToList());
|
).OrderByDescending(e=>e.ProviderValidationDate)
|
||||||
|
.ToList());
|
||||||
}
|
}
|
||||||
|
|
||||||
// GET: Estimate/Details/5
|
// GET: Estimate/Details/5
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue