Execute() public method

public Execute ( string name ) : bool
name string
return bool
        public bool GroupExists(string name)
        {
            var query = new GroupExistsQuery(dbContext.Groups);

            return query.Execute(name);
        }