| 123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using Core.StlMes.Client.SaleOrder.BLL;
- using CoreFS.CA06;
- using Core.Mes.Client.Comm.Tool;
- namespace Core.StlMes.Client.SaleOrder.Control
- {
- public partial class CraftOrdDesignMscCftCtrl : UserControl
- {
- private CraftOrdDesignMscCftBLL _designMscCftBLL;
- public CraftOrdDesignMscCftCtrl(System.Windows.Forms.Control container, OpeBase ob)
- {
- InitializeComponent();
- _designMscCftBLL = new CraftOrdDesignMscCftBLL(ob);
- container.Controls.Add(this);
- this.Dock = DockStyle.Fill;
- EntityHelper.ShowGridCaption<CraftOrdDesignMscCftEntity>(ultraGrid1.DisplayLayout.Bands[0]);
- }
- /// <summary>
- /// 查询质量设计工艺参数
- /// </summary>
- /// <param name="designMscCftEntity"></param>
- public void Query(CraftOrdDesignMscCftEntity designMscCftEntity)
- {
- this.CraftOrdDesignMscCftEntityBindingSource.DataSource = _designMscCftBLL.Query(designMscCftEntity);
- }
- }
- }
|