1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using HNWD.Pregrant.WebService;
- using HNWD.Pregrant.Model;
- using System.Text;
- using HNWD.Pregrant.DataAccess;
- using HNWD.Pregrant.Common;
- using HNWD.Pregrant.BusinessLogic;
- namespace HNWD.Pregrant.WebService.WDMK_I
- {
- public partial class callingDoor_getmachinedata : PageBase
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- WD_PartInfoBusinessLogic wd_PartInfoBusinessLogic = new WD_PartInfoBusinessLogic();
- if (!wd_PartInfoBusinessLogic.Operate())
- {
- this.ResponseDefaultError(PromptingMessage.Error_PartInfo);
- return;
- }
- Response.Write(JsonHelper.SerializeWithSuffix(wd_PartInfoBusinessLogic.wd_PartInfo));
-
-
- }
- }
- }
|