Exemplo n.º 1
0
 public virtual PropertyRoute GetEntityPropertyRoute()
 {
     return(Common.GetPropertyRoute(this));
 }
Exemplo n.º 2
0
 protected virtual bool CanFind()
 {
     return(Entity == null && Find && !Common.GetIsReadOnly(this));
 }
Exemplo n.º 3
0
 protected virtual bool CanCreate()
 {
     return(Entity == null && Create && !Common.GetIsReadOnly(this));
 }
Exemplo n.º 4
0
 protected virtual bool CanRemove()
 {
     return(Entity != null && Remove && !Common.GetIsReadOnly(this));
 }