// получаем график табельщика для конкретного сотрудника
    public List<TimekeeperHours> getEmployeesTimekeeperHours(string employee_id, string start_period, string begda, string endda)
    {
        SQLDB db = new SQLDB();

        List<TimekeeperHours> current = db.getTimekeeperHours(employee_id, start_period, begda, endda);

        return current;
    }