コード例 #1
0
ファイル: Category.cs プロジェクト: sorryb/ASP.NET.Web-Forms
        /*** STATIC METHODS ***/

        public static bool DeleteCategory(int categoryId)
        {
            if (categoryId <= DefaultValues.GetCategoryIdMinValue())
            {
                throw (new ArgumentOutOfRangeException("categoryId"));
            }

            DataAccessLayerBaseClass DBLayer = DataAccessLayerBaseClassHelper.GetDataAccessLayer();

            return(DBLayer.DeleteCategory(categoryId));
        }
コード例 #2
0
ファイル: Category.cs プロジェクト: sorryb/ASP.NET.Web-Forms
 public Category(int projectId, int parentCategoryId, string name)
     : this(DefaultValues.GetCategoryIdMinValue(), projectId, parentCategoryId, name)
 {
 }
コード例 #3
0
ファイル: Category.cs プロジェクト: sorryb/ASP.NET.Web-Forms
 public Category(string name, int categoryId)
     : this(categoryId, DefaultValues.GetProjectIdMinValue(), DefaultValues.GetCategoryIdMinValue(), name)
 {
 }