final fixed
This commit is contained in:
parent
685a8128b1
commit
6a00072ae7
@ -5,13 +5,15 @@ VisualStudioVersion = 17.3.32922.545
|
|||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SecuritySystemView", "SecuritySystemView.csproj", "{39A7185D-F1F5-4892-BE6F-72B1A849CA84}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SecuritySystemView", "SecuritySystemView.csproj", "{39A7185D-F1F5-4892-BE6F-72B1A849CA84}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SystemSecurityBusinessLogic", "..\SystemSecurityBusinessLogic\SystemSecurityBusinessLogic.csproj", "{D8EF10A4-F934-461B-BE3C-BCCCF266B8D9}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SystemSecurityBusinessLogic", "..\SystemSecurityBusinessLogic\SystemSecurityBusinessLogic.csproj", "{D8EF10A4-F934-461B-BE3C-BCCCF266B8D9}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SecuritySystemContracts", "..\SecuritySystemContracts\SecuritySystemContracts.csproj", "{C1C491F5-4CB7-4B6B-92CE-41688769709A}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SecuritySystemContracts", "..\SecuritySystemContracts\SecuritySystemContracts.csproj", "{C1C491F5-4CB7-4B6B-92CE-41688769709A}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SecuritySystemDataModels", "..\SecuritySystemDataModels\SecuritySystemDataModels.csproj", "{D12D1329-4362-472B-B6E6-D62B0FF00C63}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SecuritySystemDataModels", "..\SecuritySystemDataModels\SecuritySystemDataModels.csproj", "{D12D1329-4362-472B-B6E6-D62B0FF00C63}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SecuritySystemListImplement", "..\SecuritySystemListImplement\SecuritySystemListImplement.csproj", "{A5A3381B-3592-41B6-880F-333C2502DF02}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SecuritySystemListImplement", "..\SecuritySystemListImplement\SecuritySystemListImplement.csproj", "{A5A3381B-3592-41B6-880F-333C2502DF02}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SecuritySystemFileImplement", "..\SecuritySystemFileImplement\SecuritySystemFileImplement.csproj", "{7EAA8744-DD28-4007-B05B-FF2644A3D9BB}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
@ -39,6 +41,10 @@ Global
|
|||||||
{A5A3381B-3592-41B6-880F-333C2502DF02}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{A5A3381B-3592-41B6-880F-333C2502DF02}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{A5A3381B-3592-41B6-880F-333C2502DF02}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{A5A3381B-3592-41B6-880F-333C2502DF02}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{A5A3381B-3592-41B6-880F-333C2502DF02}.Release|Any CPU.Build.0 = Release|Any CPU
|
{A5A3381B-3592-41B6-880F-333C2502DF02}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{7EAA8744-DD28-4007-B05B-FF2644A3D9BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{7EAA8744-DD28-4007-B05B-FF2644A3D9BB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{7EAA8744-DD28-4007-B05B-FF2644A3D9BB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{7EAA8744-DD28-4007-B05B-FF2644A3D9BB}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
@ -36,13 +36,7 @@ namespace SecuritySystemListImplement.Models
|
|||||||
}
|
}
|
||||||
return new Order()
|
return new Order()
|
||||||
{
|
{
|
||||||
Id = model.Id,
|
|
||||||
ManufactureId = model.ManufactureId,
|
|
||||||
ManufactureName = model.ManufactureName,
|
|
||||||
Count = model.Count,
|
|
||||||
Sum = model.Sum,
|
|
||||||
Status = model.Status,
|
Status = model.Status,
|
||||||
DateCreate = model.DateCreate,
|
|
||||||
DateImplement = model.DateImplement
|
DateImplement = model.DateImplement
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user