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

            return(IO.Staff_Insert(_StaffLine));
        }