Ejemplo n.º 1
0
 public static bool CheckHeadStaff(string UserId, string HeadStaffId, out string desc)
 {
     if (HeadStaffId == "0")
     {
         desc = null;
         return(true);
     }
     else
     {
         KKSlmMsChannelModel chann = new KKSlmMsChannelModel();
         return(chann.CheckHeadStaff(UserId, HeadStaffId, out desc));
     }
 }
Ejemplo n.º 2
0
        public static string GetChannelId(string ChannelDesc)
        {
            KKSlmMsChannelModel channel = new KKSlmMsChannelModel();

            return(channel.GetChannelId(ChannelDesc));
        }
Ejemplo n.º 3
0
        public static bool CheckUserErrorInUse(string username)
        {
            KKSlmMsChannelModel chann = new KKSlmMsChannelModel();

            return(chann.CheckUserErrorInUse(username));
        }
Ejemplo n.º 4
0
        public static List <ControlListData> GetChannelList()
        {
            KKSlmMsChannelModel chann = new KKSlmMsChannelModel();

            return(chann.GetChannelData());
        }