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