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.
35 lines
729 B
35 lines
729 B
using ICSSoft.Frame.Data.DAL;
|
|
using ICSSoft.Frame.Data.Entity;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ICSSoft.Frame.Data.BLL
|
|
{
|
|
public static class ICSIntSupCalBLL
|
|
{
|
|
|
|
public static void Delete(List<string>id,string conn) {
|
|
try {
|
|
|
|
ICSIntSupCalDAL.Delete(id,conn);
|
|
}
|
|
catch (Exception ex) {
|
|
throw ex;
|
|
}
|
|
|
|
}
|
|
|
|
public static void Calculate(List<ICSIntSupCalLog> list, string conn) {
|
|
try {
|
|
ICSIntSupCalDAL.Calculate(list, conn);
|
|
|
|
|
|
}
|
|
catch (Exception EX) {
|
|
throw EX;
|
|
}
|
|
}
|
|
}
|
|
}
|