Esempio n. 1
0
        public Boolean Update(BranchENT entBranch)
        {
            BranchDAL branchDAL = new BranchDAL();

            if (branchDAL.Update(entBranch))
            {
                return(true);
            }
            else
            {
                this.Message = branchDAL.Message;
                return(false);
            }
        }