Ejemplo n.º 1
0
 public MasterRole GetRoleRights(int RoleID)
 {
     MasterRole roleRights = new MasterRole();
     using (dbc)
     {
         roleRights = dbc.MasterRoles.SingleOrDefault(r => r.ID == RoleID);
         //(from r in dbc.MasterRoles where r.ID == RoleID select r).SingleOrDefault();
         roleRights.Users = null;//to avoid issues with XMLSerializer
     }
     return roleRights;
 }
Ejemplo n.º 2
0
 partial void UpdateMasterRole(MasterRole instance);
Ejemplo n.º 3
0
 partial void DeleteMasterRole(MasterRole instance);
Ejemplo n.º 4
0
 partial void InsertMasterRole(MasterRole instance);