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.
59 lines
1.5 KiB
59 lines
1.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using ICSSoft.Frame.Data.Entity;
|
|
using ICSSoft.Frame.Data.DAL;
|
|
using System.Data;
|
|
|
|
namespace ICSSoft.Frame.Data.BLL
|
|
{
|
|
public class ICSUserInfoBLL
|
|
{
|
|
public static int[] AddAndEdit(List<ICSUserInfo> users)
|
|
{
|
|
return ICSUserInfoDAL.AddAndEdit(users);
|
|
}
|
|
|
|
public static void DeleteThenInsert(List<ICSUserInfo> users)
|
|
{
|
|
ICSUserInfoDAL.DeleteThenInsert(users);
|
|
}
|
|
|
|
|
|
public static void DeleteAllLine(List<string> listUserCode)
|
|
{
|
|
ICSUserInfoDAL.DeleteAllLine(listUserCode);
|
|
}
|
|
|
|
public static void DeleteOneLine(List<string> listID)
|
|
{
|
|
ICSUserInfoDAL.DeleteOneLine(listID);
|
|
}
|
|
|
|
|
|
public static DataTable Select(string UserCode)
|
|
{
|
|
return ICSUserInfoDAL.Select(UserCode);
|
|
}
|
|
|
|
public static bool AllowAdd(string UserCode)
|
|
{
|
|
return ICSUserInfoDAL.AllowAdd(UserCode);
|
|
}
|
|
public static bool ExistSGroup(string Sgroup)
|
|
{
|
|
return ICSUserInfoDAL.ExistSGroup(Sgroup);
|
|
}
|
|
|
|
public static bool ExistUserCode(string userCode)
|
|
{
|
|
return ICSUserInfoDAL.ExistUserCode(userCode);
|
|
}
|
|
|
|
public static string QueryTeamUsed(List<string> teamList)
|
|
{
|
|
return ICSUserInfoDAL.QueryTeamUsed(teamList);
|
|
}
|
|
}
|
|
}
|