Ejemplo n.º 1
0
        public bool ReturnStaff(int id)
        {
            //throw new NotImplementedException();

            IStaffDAL dAL = new StaffDAL();

            if (dAL.ReturnStaff(id) > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }