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 ICSEqpSuspendDetailBLL { public static void Begin(ICSEqpSuspendDetail info, string conn) { ICSEqpSuspendDetailDAL.Begin(info, conn); } public static void End(ICSEqpSuspendDetail info, string conn) { ICSEqpSuspendDetailDAL.End(info, conn); }
public static void EndSus(ICSEqpSuspendDetail info, string conn) { ICSEqpSuspendDetailDAL.EndSus(info, conn); } public static void End(string ID, string conn) { ICSEqpSuspendDetailDAL.End(ID, conn); } } }
|