PIbd-23_Abazov_A.A._Constru.../ConstructionCompany/ConstructionCompanyView/FormWarehouseMenu.cs
2023-04-21 19:48:18 +04:00

49 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Microsoft.EntityFrameworkCore.Metadata.Conventions;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ConstructionCompanyView
{
public partial class FormWarehouseMenu : Form
{
public FormWarehouseMenu()
{
InitializeComponent();
}
private void материалыToolStripMenuItem_Click(object sender, EventArgs e)
{
var service = Program.ServiceProvider?.GetService(typeof(FormMaterials));
if (service is FormMaterials form)
{
form.ShowDialog();
}
}
private void поставкиToolStripMenuItem_Click(object sender, EventArgs e)
{
var service = Program.ServiceProvider?.GetService(typeof(FormMaterialOrders));
if (service is FormMaterialOrders form)
{
form.ShowDialog();
}
}
private void отчётОИспользованииToolStripMenuItem_Click(object sender, EventArgs e)
{
var service = Program.ServiceProvider?.GetService(typeof(FormWarehouseReport));
if (service is FormWarehouseReport form)
{
form.ShowDialog();
}
}
}
}