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.
32 lines
766 B
32 lines
766 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
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 SupplierController
|
|
{
|
|
public static List<TA_VENDER> GetlistByName(TA_VENDER model)
|
|
{
|
|
using (ScpEntities db = EntitiesFactory.CreateScpInstance())
|
|
{
|
|
return db.TA_VENDER.Where(p => p.VendName == model.VendName).ToList();
|
|
}
|
|
}
|
|
public static List<TA_VENDER> Getlist()
|
|
{
|
|
using (ScpEntities db = EntitiesFactory.CreateScpInstance())
|
|
{
|
|
return db.TA_VENDER.ToList();
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|