20 lines
415 B
C#
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: 在這裡新增建構函式邏輯
|
|
//
|
|
}
|
|
} |