protected override Entity DoGetById(object id, EagerLoadOptions eagerLoad) { var res = new RafyIdentity { User = RF.ResolveInstance <UserRepository>().GetById(id) as User }; res.LoadChildrenProperties(); this.NotifyLoaded(res); return(res); }
internal RafyIdentity GetBy(string username, string password) { var res = new RafyIdentity { User = RF.ResolveInstance <UserRepository>().GetBy(username, password) }; res.LoadChildrenProperties(); this.NotifyLoaded(res); return(res); }
private RafyPrincipal(RafyIdentity realIdentity) { this._userId = realIdentity.Id; this._edsIdentity = realIdentity; }
public void Insert(int index, RafyIdentity entity) { base.Insert(index, entity); }
public int IndexOf(RafyIdentity entity) { return(base.IndexOf(entity)); }
public bool Contains(RafyIdentity entity) { return(base.Contains(entity)); }
public void Add(RafyIdentity entity) { base.Add(entity); }
public bool Remove(RafyIdentity entity) { return(base.Remove(entity)); }