Compare commits
No commits in common. "66daf25d5255f1f2a429d055af300215cbbd3b0d" and "1f6626673f0fc09255f1378dc660b9f41a244660" have entirely different histories.
66daf25d52
...
1f6626673f
|
@ -39,7 +39,6 @@ namespace BLL
|
|||
var list = (from x in Funs.DB.Comprehensive_DesignDetails
|
||||
join y in Funs.DB.Base_CNProfessional on x.CNProfessionalId equals y.CNProfessionalId
|
||||
where x.ProjectId == projectId
|
||||
orderby x.CompileDate descending
|
||||
select new Comprehensive_DesignDetailsDto()
|
||||
{
|
||||
DesignDetailsId = x.DesignDetailsId,
|
||||
|
@ -165,7 +164,6 @@ namespace BLL
|
|||
var list = (from x in Funs.DB.Comprehensive_ReviewDrawings
|
||||
join y in Funs.DB.Base_CNProfessional on x.CNProfessionalId equals y.CNProfessionalId
|
||||
where x.ProjectId == projectId
|
||||
orderby x.CreateDate descending
|
||||
select new Comprehensive_ReviewDrawingsDto
|
||||
{
|
||||
Id = x.Id,
|
||||
|
@ -228,7 +226,6 @@ namespace BLL
|
|||
join y in Funs.DB.Base_CNProfessional on x.CNProfessionalId equals y.CNProfessionalId
|
||||
join z in Funs.DB.Base_Unit on x.UnitId equals z.UnitId
|
||||
where x.ProjectId == projectId
|
||||
orderby x.CompileDate descending
|
||||
select new Comprehensive_ConTechnologyDisclosureDto
|
||||
{
|
||||
ConTechnologyDisclosureId = x.ConTechnologyDisclosureId,
|
||||
|
@ -308,7 +305,6 @@ namespace BLL
|
|||
join Cn in Funs.DB.Base_CNProfessional on x.CNProfessionalId equals Cn.CNProfessionalId
|
||||
join z in Funs.DB.Base_Post on x.PostId equals z.PostId
|
||||
where x.ProjectId == projectId
|
||||
orderby x.CompileDate descending
|
||||
select new Comprehensive_InspectionPersonDto
|
||||
{
|
||||
InspectionPersonId = x.InspectionPersonId,
|
||||
|
@ -427,7 +423,6 @@ namespace BLL
|
|||
join y in Funs.DB.Base_Unit on x.UnitId equals y.UnitId
|
||||
join Cn in Funs.DB.Base_CNProfessional on x.CNProfessionalId equals Cn.CNProfessionalId
|
||||
where x.ProjectId == projectId
|
||||
orderby x.CompileDate descending
|
||||
select new Comprehensive_InspectionEquipmentDto
|
||||
{
|
||||
InspectionEquipmentId = x.InspectionEquipmentId,
|
||||
|
@ -519,7 +514,6 @@ namespace BLL
|
|||
join y in Funs.DB.Base_Unit on x.UnitId equals y.UnitId
|
||||
join Cn in Funs.DB.Base_CNProfessional on x.CNProfessionalId equals Cn.CNProfessionalId
|
||||
where x.ProjectId == projectId
|
||||
orderby x.CompileDate descending
|
||||
select new Comprehensive_InspectionMachineDto
|
||||
{
|
||||
InspectionMachineId = x.InspectionMachineId,
|
||||
|
@ -593,7 +587,6 @@ namespace BLL
|
|||
var list = (from x in Funs.DB.ProcessControl_NondestructiveTest_New
|
||||
join y in Funs.DB.Base_Unit on x.UnitId equals y.UnitId
|
||||
where x.ProjectId == projectId
|
||||
orderby x.CreateDate descending
|
||||
select new ProcessControl_NondestructiveTest_NewDto
|
||||
{
|
||||
Id = x.Id,
|
||||
|
@ -644,7 +637,6 @@ namespace BLL
|
|||
var list = (from x in Funs.DB.Comprehensive_PressurePipe
|
||||
join y in Funs.DB.Base_Unit on x.UnitId equals y.UnitId
|
||||
where x.Projctid == projectId
|
||||
|
||||
select new Comprehensive_PressurePipeDto
|
||||
{
|
||||
PressurePipeId = x.PressurePipeId,
|
||||
|
|
Loading…
Reference in New Issue