2023-04-10 13:02:23 +04:00
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-04-21 19:48:18 +04:00
|
|
|
|
|
|
|
|
|
private void отчётОИспользованииToolStripMenuItem_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
var service = Program.ServiceProvider?.GetService(typeof(FormWarehouseReport));
|
|
|
|
|
if (service is FormWarehouseReport form)
|
|
|
|
|
{
|
|
|
|
|
form.ShowDialog();
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-04-10 13:02:23 +04:00
|
|
|
|
}
|
|
|
|
|
}
|