Beispiel #1
0
        public bool CheckUser(string fullNameUser, string userName, string TypeApprove, string idChange)
        {
            string[] id = idChange.Split('-');
            idChange = id[1];
            bool check = false;

            check = changes.CheckifCanApprove(fullNameUser, userName, TypeApprove, idChange);
            return(check);
        }