diff --git a/SoftwareInstallation/SoftwareInstallationFileImplement/OrderStorage.cs b/SoftwareInstallation/SoftwareInstallationFileImplement/OrderStorage.cs index f4c2ab1..9154a68 100644 --- a/SoftwareInstallation/SoftwareInstallationFileImplement/OrderStorage.cs +++ b/SoftwareInstallation/SoftwareInstallationFileImplement/OrderStorage.cs @@ -59,7 +59,7 @@ namespace SoftwareInstallationFileImplement.Implements public List GetFullList() { - return source.Orders.Select(x => GetPackageName(x.GetViewModel)).ToList(); + return source.Orders.Select(x => GetPackageName(x.GetViewModel)).Select(GetClientName).ToList(); } public OrderViewModel? Insert(OrderBindingModel model)