CodeGarten.Data.Access.RoleManager.Get C# (CSharp) Méthode

Get() public méthode

public Get ( long structure, string containerPrototype, string workspaceType, string roleType ) : Role
structure long
containerPrototype string
workspaceType string
roleType string
Résultat CodeGarten.Data.Model.Role
        public Role Get(long structure, string containerPrototype, string workspaceType, string roleType)
        {
            return _dbManager.DbContext.Roles.Find(
                                            containerPrototype,
                                            structure,
                                            roleType,
                                            structure,
                                            workspaceType,
                                            structure
                                         );
        }