コード例 #1
0
        internal GroupMemberViewModel GetById(int Id)
        {
            GroupMemberViewModel exists = _repo.GetById(Id);

            if (exists == null)
            {
                throw new System.Exception("Invalid GroupMember");
            }
            return(exists);
        }