Example #1
0
        public GroupDto GetGroupDtoById(int groupId, int userId)
        {
            Group    group    = groupManager.GetGroupById(groupId);
            GroupDto groupDto = groupMapper.GetGroupInDto(group, userId);

            return(groupDto);
        }