public bool UpdateByID(M_MailInfo model) { return(Sql.UpdateByIDs(strTableName, PK, model.ID.ToString(), BLLCommon.GetFieldAndPara(model), model.GetParameters())); }
public bool UpdateByID(M_Process model) { return(Sql.UpdateByIDs(strTableName, PK, model.Id.ToString(), BLLCommon.GetFieldAndPara(model), model.GetParameters(model))); }
public int Insert(M_ServiceSeat model) { return(Sql.insert(strTableName, model.GetParameters(model), BLLCommon.GetParas(model), BLLCommon.GetFields(model))); }
public int insert(M_Process model) { return(Sql.insert(strTableName, model.GetParameters(model), BLLCommon.GetParas(model), BLLCommon.GetFields(model))); }
public bool UpdateByID(M_ServiceSeat model) { return(Sql.UpdateByIDs(strTableName, PK, model.S_ID.ToString(), BLLCommon.GetFieldAndPara(model), model.GetParameters(model))); }