показала, осталось отчет

This commit is contained in:
Елена Бакальская 2024-05-15 13:03:20 +04:00
parent a882e62323
commit be8076250f
3 changed files with 4 additions and 4 deletions

View File

@ -113,8 +113,8 @@ namespace BeautySalon
{
chequeStorage.Add(new Cheque
{
MasterId = 27,
ServiceId = 40,
MasterId = 2,
ServiceId = 1,
ClientId = i % 2 + 2,
Price = i * 10,
DateReception = DateTime.Now,

View File

@ -101,7 +101,7 @@ namespace BeautySalon
masterDb.Add(new Master
{
FIO = i.ToString(),
SpecialisationId = 13,
SpecialisationId = 1,
});
}
sw.Stop();

View File

@ -102,7 +102,7 @@ namespace BeautySalon
serviceStorage.Add(new Service
{
ServiceName = i.ToString(),
SpecialisationId = 13,
SpecialisationId = i % 2 + 1,
Price = i * 10
}) ;
}