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 listInfo = arrInfo.ToList(); ICSEQPShutdownDAL.AddAndEdit(listInfo, Add); } public static void Delete(List 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); } } }