public static AssetCategory FindOne(AssetCategoryFinder finder)
        {
            AssetCategory AssetCategory = AssetCategoryMapper.Instance.FindOne(finder);

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

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