public Boolean Update(MST_CategoryTypeENT entMST_CategoryType)
        {
            MST_CategoryTypeDAL dalMST_CategoryType = new MST_CategoryTypeDAL();

            if (dalMST_CategoryType.Update(entMST_CategoryType))
            {
                return(true);
            }
            else
            {
                this.Message = dalMST_CategoryType.Message;
                return(false);
            }
        }
        public Boolean Delete(SqlInt32 CategoryTypeID)
        {
            MST_CategoryTypeDAL dalMST_CategoryType = new MST_CategoryTypeDAL();

            if (dalMST_CategoryType.Delete(CategoryTypeID))
            {
                return(true);
            }
            else
            {
                this.Message = dalMST_CategoryType.Message;
                return(false);
            }
        }
        public MST_CategoryTypeENT SelectPK(SqlInt32 CategoryTypeID)
        {
            MST_CategoryTypeDAL dalMST_CategoryType = new MST_CategoryTypeDAL();

            return(dalMST_CategoryType.SelectPK(CategoryTypeID));
        }
        public DataTable SelectAll()
        {
            MST_CategoryTypeDAL dalMST_CategoryType = new MST_CategoryTypeDAL();

            return(dalMST_CategoryType.SelectAll());
        }