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.
32 lines
919 B
32 lines
919 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using ICSSoft.Frame.Data.DAL;
|
|
using ICSSoft.Frame.Data.Entity;
|
|
|
|
namespace ICSSoft.Frame.Data.BLL
|
|
{
|
|
public class ICSEQPWeeklyMaintenanceBLL
|
|
{
|
|
public static void DeleteById(List<string> listID, string dsconn)
|
|
{
|
|
ICSEQPWeeklyMaintenanceDAL.DeleteById(listID, dsconn);
|
|
}
|
|
|
|
public static void Add(ICSEQPWeeklyMaintenance info, string dsconn)
|
|
{
|
|
ICSEQPWeeklyMaintenanceDAL.Add(info, dsconn);
|
|
}
|
|
|
|
public static void Modify(ICSEQPWeeklyMaintenance info, string dsconn)
|
|
{
|
|
ICSEQPWeeklyMaintenanceDAL.Modify(info, dsconn);
|
|
}
|
|
|
|
public static void Edit4OneEQ(string EQPID, List<ICSEQPWeeklyMaintenance> list, string dsconn)
|
|
{
|
|
ICSEQPWeeklyMaintenanceDAL.Edit4OneEQ(EQPID, list, dsconn);
|
|
}
|
|
}
|
|
}
|