You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
1 year ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
using CK.SCP.Models;
|
||
|
using CK.SCP.Models.ScpEntity;
|
||
|
|
||
|
namespace CK.SCP.Controller
|
||
|
{
|
||
|
public class OadOrderController
|
||
|
{
|
||
|
// public List<QadOrder> GetList()
|
||
|
// {
|
||
|
// using (ScpEntities db = EntitiesFactory.CreateScpInstance())
|
||
|
// {
|
||
|
// // db.TB_QadOrder.Where(p=>p.BillNo==db.)
|
||
|
// var query = db.TB_QadOrder.Join(db.TB_QadOrderDetail, a => a.BillNo, g => g.BillNo, (a, g) => new
|
||
|
// {
|
||
|
// a.BillNo,
|
||
|
// a.SupplierCode,
|
||
|
// a.StartDate,
|
||
|
// a.Address,
|
||
|
// a.ProductCode,
|
||
|
// a.Qty,
|
||
|
// }).ToList();
|
||
|
//// return query;
|
||
|
// // return db.V_BillInvoice.Where(p => p.BillNum == billnum).ToList();
|
||
|
//
|
||
|
// }
|
||
|
// }
|
||
|
}
|
||
|
}
|