public EmployeeComeAndLeave ComeAndLeaveStatisticsOnlyOneMonth(DateTime dt, int departmentID, Account accountoperator)
        {
            List <Employee>         outEndDtEmployeeList;
            GetEmployeeComeAndLeave GetEmployeeComeAndLeave = new GetEmployeeComeAndLeave();

            return
                (GetEmployeeComeAndLeave.ComeAndLeaveStatisticsOnlyOneMonth(dt, departmentID, accountoperator,
                                                                            null, out outEndDtEmployeeList, null));
        }
        public List <EmployeeComeAndLeave> ComeAndLeaveStatistics(DateTime dt, int departmentID, Account accountoperator)
        {
            GetEmployeeComeAndLeave GetEmployeeComeAndLeave = new GetEmployeeComeAndLeave();

            return(GetEmployeeComeAndLeave.ComeAndLeaveStatistics(dt, departmentID, accountoperator));
        }