вроде кладовщик робит уже хорошо

This commit is contained in:
Milana Ievlewa 2024-08-27 18:19:03 +04:00
parent 752a8ce6c6
commit 7872fbb607
328 changed files with 615 additions and 336 deletions

View File

@ -3,17 +3,17 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34714.143
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarCenterDataModels", "CarCenterDataModels\CarCenterDataModels.csproj", "{0DF028FA-4404-46D3-9752-6B993A5E17DD}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BeautySalonDataModels", "CarCenterDataModels\BeautySalonDataModels.csproj", "{0DF028FA-4404-46D3-9752-6B993A5E17DD}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarCenterContracts", "CarCenterContracts\CarCenterContracts.csproj", "{35B11D95-5D0B-4D63-99E2-3ABF76178FDA}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BeautySalonContracts", "CarCenterContracts\BeautySalonContracts.csproj", "{35B11D95-5D0B-4D63-99E2-3ABF76178FDA}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarCenterBusinessLogic", "CarCenterBusinessLogic\CarCenterBusinessLogic.csproj", "{F7C378AF-AFFA-4E6B-8F21-D1A607B43B9A}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BeautySalonBusinessLogic", "CarCenterBusinessLogic\BeautySalonBusinessLogic.csproj", "{F7C378AF-AFFA-4E6B-8F21-D1A607B43B9A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CarCenterDatabaseImplement", "CarCenterDatabaseImplement\CarCenterDatabaseImplement.csproj", "{B441CCEB-C6EB-4573-87D6-A06F42623199}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BeautySalonDatabaseImplement", "CarCenterDatabaseImplement\BeautySalonDatabaseImplement.csproj", "{B441CCEB-C6EB-4573-87D6-A06F42623199}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenterStorekeeperApp", "CarCenterStorekeeperApp\CarCenterStorekeeperApp.csproj", "{6CF38151-471F-42EE-9A68-6A5FA1F87BD1}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BeautySalonStorekeeperApp", "CarCenterStorekeeperApp\BeautySalonStorekeeperApp.csproj", "{6CF38151-471F-42EE-9A68-6A5FA1F87BD1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarCenterWorkerApp", "CarCenterWorkerApp\CarCenterWorkerApp.csproj", "{557BE753-F505-4566-87FF-A0947CD8C52F}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BeautySalonWorkerApp", "CarCenterWorkerApp\BeautySalonWorkerApp.csproj", "{557BE753-F505-4566-87FF-A0947CD8C52F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -15,7 +15,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\CarCenterContracts\CarCenterContracts.csproj" />
<ProjectReference Include="..\CarCenterContracts\BeautySalonContracts.csproj" />
</ItemGroup>
</Project>

View File

@ -22,7 +22,7 @@ namespace CarCenterBusinessLogic.OfficePackage
{
CreateRow(new PdfRowParameters
{
Texts = new List<string> { "Номер комплектации", "Покупка" },
Texts = new List<string> { "Номер услуги", "Заказ" },
Style = "NormalTitle",
ParagraphAlignment = PdfParagraphAlignmentType.Center
});
@ -41,7 +41,7 @@ namespace CarCenterBusinessLogic.OfficePackage
});
CreateRow(new PdfRowParameters
{
Texts = new List<string> { "", "Особенности" },
Texts = new List<string> { "", "Трудозатраты" },
Style = "NormalTitle",
ParagraphAlignment = PdfParagraphAlignmentType.Center
});

View File

@ -7,7 +7,7 @@
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\CarCenterDataModels\CarCenterDataModels.csproj" />
<ProjectReference Include="..\CarCenterDataModels\BeautySalonDataModels.csproj" />
</ItemGroup>
</Project>

View File

@ -9,13 +9,13 @@ namespace CarCenterDataModels.Enums
public enum CosmeticBrand
{
Неизвестно = -1,
Лада = 0,
Тойота = 1,
Опель = 2,
Митсубиси = 3,
Субару = 4,
Форд = 5,
Лексус = 6,
Шевроле = 7,
CHANEL = 0,
VERSACE = 1,
LANCOME = 2,
MAYBELLINE = 3,
VIVIEN_SABO = 4,
LOREAL = 5,
LUXVISAGE = 6,
BVLGLARI_DIOR = 7,
}
}

Some files were not shown because too many files have changed in this diff Show More