using SiaSun.LMS.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SiaSun.LMS.Persistence { public class P_MES_INTERFACE_RETRY:P_Base_House { public P_MES_INTERFACE_RETRY() { } public IList GetList() { return ExecuteQueryForList("MES_INTERFACE_RETRY_SELECT", null); } public int Add(MES_INTERFACE_RETRY mes_interface_retry) { return ExecuteInsert("MES_INTERFACE_RETRY_INSERT", mes_interface_retry); } public int Update(MES_INTERFACE_RETRY mes_interface_retry) { return ExecuteUpdate("MES_INTERFACE_RETRY_UPDATE", mes_interface_retry); } public int Delete(System.Int32 ID) { return ExecuteDelete("MES_INTERFACE_RETRY_DELETE", ID); } } }