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 CraftOrdDesignMscPlStiCtrl : UserControl { private CraftOrdDesignMscPlStiBLL _designMscPlStiBLL; public CraftOrdDesignMscPlStiCtrl(System.Windows.Forms.Control container, OpeBase ob) { InitializeComponent(); _designMscPlStiBLL = new CraftOrdDesignMscPlStiBLL(ob); container.Controls.Add(this); EntityHelper.ShowGridCaption(ultraGrid1.DisplayLayout.Bands[0]); } /// /// 查询质量设计工序点 /// /// public void Query(CraftOrdDesignMscPlStiEntity designMscPlStiEntity) { this.CraftOrdDesignMscPlStiEntityBindingSource.DataSource = _designMscPlStiBLL.Query(designMscPlStiEntity); } } }