/// <summary>
        /// Updates a record to the Staff table.
        /// </summary>
        public static bool Staff_Update(Staff.BLDAL.DTO.Staff _StaffLine)
        {
            StaffDAL IO = new StaffDAL();

            return(IO.Staff_Update(_StaffLine));
        }