Exemplo n.º 1
0
        public static AssetCategory FindOne(AssetCategoryFinder finder)
        {
            AssetCategory AssetCategory = AssetCategoryMapper.Instance.FindOne(finder);

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

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