public virtual EntityList <UserPasswordHistory> FindMany(UserPasswordHistoryFinder finder)
 {
     return((EntityList <UserPasswordHistory>)(base.FindMany(finder)));
 }
 public virtual EntityList <UserPasswordHistory> FindMany(UserPasswordHistoryFinder finder, int Page, int PageSize)
 {
     return((EntityList <UserPasswordHistory>)(base.FindMany(finder, Page, PageSize)));
 }
        public virtual UserPasswordHistory FindOne(UserPasswordHistoryFinder finder)
        {
            IEntity entity = base.FindOne(finder);

            return((entity == null) ? UserPasswordHistory.Empty : entity as UserPasswordHistory);
        }
Exemple #4
0
 public static int GetCount(UserPasswordHistoryFinder finder)
 {
     return(UserPasswordHistoryMapper.Instance.GetCount(finder));
 }
Exemple #5
0
        public static UserPasswordHistory FindOne(UserPasswordHistoryFinder finder)
        {
            UserPasswordHistory UserPasswordHistory = UserPasswordHistoryMapper.Instance.FindOne(finder);

            return(UserPasswordHistory ?? Empty);
        }
Exemple #6
0
 public static EntityList <UserPasswordHistory> FindMany(UserPasswordHistoryFinder finder)
 {
     return(UserPasswordHistoryMapper.Instance.FindMany(finder));
 }
Exemple #7
0
 public static EntityList <UserPasswordHistory> FindMany(UserPasswordHistoryFinder finder, int Page, int PageSize)
 {
     return(UserPasswordHistoryMapper.Instance.FindMany(finder, Page, PageSize));
 }