示例#1
0
        /*******************************************************************************************************************\
        *                                                                                                                 *
        \*******************************************************************************************************************/

        private void reset_week(DateTime start_of_week)
        {
            foreach (var c in _employee)
            {
                ucSalary uc = c.Value;

                if (!uc.LoadIt)
                {
                    uc.ShowIt = false;
                }

                uc.ResetWeek(start_of_week);
            }
        }