Files
17168ERP/web/App_Code/api/preOrderController.cs
T
2026-07-31 17:46:21 +08:00

20 lines
415 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
// api/pre_order
//[ezAuthorize(Roles = "admin")]//群組:*
//[ezAuthorize]
public class preOrderController: ApiController
{
private Model.ezEntities _db = new Model.ezEntities();
public preOrderController()
{
//
// TODO: 在這裡新增建構函式邏輯
//
}
}