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.
|
|
using System; using System.Collections.Generic; using System.Linq; using System.Text; using ICSSoft.Frame.Data.Entity; using ICSSoft.Frame.Data.DAL;
namespace ICSSoft.Frame.Data.BLL { public class ICSEQPShutdownBLL { public static void AddAndEdit(bool Add, params FormICSEQPShutdownUIModel[] arrInfo) { List<FormICSEQPShutdownUIModel> listInfo = arrInfo.ToList<FormICSEQPShutdownUIModel>(); ICSEQPShutdownDAL.AddAndEdit(listInfo, Add); }
public static void Delete(List<string> listID) { ICSEQPShutdownDAL.Delete(listID); }
public static FormICSEQPShutdownUIModel Select(string id) { return ICSEQPShutdownDAL.Select(id); }
public static ICSEquipmentShutdown SelectSuspendInfo(string lot, string route, string op, string user) { return ICSEQPShutdownDAL.SelectSuspendInfo(lot, route, op, user); } } }
|