/// <summary>
        /// Deletes a record from the Staff table by its primary key.
        /// </summary>
        public static bool Staff_Delete(Staff.BLDAL.DTO.Staff _StaffLine)
        {
            StaffDAL IO = new StaffDAL();

            return(IO.Staff_Delete(_StaffLine));
        }