исправила формочку надеюсь сдам!

This commit is contained in:
malimova 2024-05-04 00:26:52 +04:00
parent f044c9cd9b
commit 3f78fd1d77
2 changed files with 64 additions and 60 deletions

View File

@ -74,6 +74,7 @@
Controls.Add(dataGridView);
Name = "FormClients";
Text = "Список клиентов";
Load += FormClients_Load;
((System.ComponentModel.ISupportInitialize)dataGridView).EndInit();
ResumeLayout(false);
}

View File

@ -37,6 +37,8 @@ namespace ConfectioneryView
services.AddTransient<IComponentStorage, ComponentStorage>();
services.AddTransient<IOrderStorage, OrderStorage>();
services.AddTransient<IPastryStorage, PastryStorage>();
services.AddTransient<IClientStorage, ClientStorage>();
services.AddTransient<IClientLogic, ClientLogic>();
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<IPastryLogic, PastryLogic>();
@ -53,6 +55,7 @@ namespace ConfectioneryView
services.AddTransient<FormPastrys>();
services.AddTransient<FormReportPastryComponents>();
services.AddTransient<FormReportOrders>();
services.AddTransient<FormClients>();
}
}
}