Ejemplo n.º 1
0
        public static IpAddress FindOne(IpAddressFinder finder)
        {
            IpAddress IpAddress = IpAddressMapper.Instance.FindOne(finder);

            return(IpAddress ?? Empty);
        }
Ejemplo n.º 2
0
 public static int GetCount(IpAddressFinder finder)
 {
     return(IpAddressMapper.Instance.GetCount(finder));
 }
Ejemplo n.º 3
0
 public static EntityList <IpAddress> FindMany(IpAddressFinder finder)
 {
     return(IpAddressMapper.Instance.FindMany(finder));
 }
Ejemplo n.º 4
0
 public static EntityList <IpAddress> FindMany(IpAddressFinder finder, int Page, int PageSize)
 {
     return(IpAddressMapper.Instance.FindMany(finder, Page, PageSize));
 }
Ejemplo n.º 5
0
 public virtual EntityList <IpAddress> FindMany(IpAddressFinder finder, int Page, int PageSize)
 {
     return((EntityList <IpAddress>)(base.FindMany(finder, Page, PageSize)));
 }
Ejemplo n.º 6
0
 public virtual EntityList <IpAddress> FindMany(IpAddressFinder finder)
 {
     return((EntityList <IpAddress>)(base.FindMany(finder)));
 }
Ejemplo n.º 7
0
        public virtual IpAddress FindOne(IpAddressFinder finder)
        {
            IEntity entity = base.FindOne(finder);

            return((entity == null) ? IpAddress.Empty : entity as IpAddress);
        }