Click here to Skip to main content
15,884,628 members
Articles / Programming Languages / XML

netTierGenerator

Rate me:
Please Sign up or sign in to vote.
4.81/5 (20 votes)
30 Nov 2008CPOL14 min read 67.4K   2.8K   108  
A 3-tier application framework and code generation tool - the way for rapid and effective development.
using System;
using System.Collections.Generic;
using System.Text;

namespace TierGenerator.Common.Util.Model
{
    public class ItemMethod
    {
        #region Class Members
        private bool bllAccess;
        private bool dalAccess;
        private bool needToCreate;
        #endregion

        public ItemMethod()
        {
            bllAccess = true;
            dalAccess = true;
            needToCreate = true;
        }

        #region Public Properties
        public bool BllAccess
        {
            get { return bllAccess; }
            set { bllAccess = value; }
        }
        public bool DalAccess
        {
            get { return dalAccess; }
            set { dalAccess = value; }
        }
        public bool NeedToCreate
        {
            get { return needToCreate; }
            set { needToCreate = value; }
        }
        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions