예제 #1
0
파일: Group.cs 프로젝트: CarverLab/Oyster
        public void RemoveUser(OCL.User AccessingUser,OCL.User U)
        {
            try
            {
                Functions F = new Functions();
                F.RemoveUserFromGroup(AccessingUser,U,this);

            }
            catch(Exception Err)
            {
                throw new ApplicationException(Err.Message,Err.InnerException);
            }
        }