[Tex/LaTex] Several job titles for the same employer in moderncv

cvmoderncv

I was wondering how can I tweak moderncv to create entries for multiple job titles with the same employer.

I am basically interested in mimicking approach 2 that is explained here using the classic theme if possible.

Any help is appreciated.

Edit:

I have been experimenting, and the following is a MWE example as suggested:

\documentclass[11pt,a4paper]{moderncv}

\moderncvtheme[blue]{classic}        

\firstname{FirstName}
\familyname{LastName}

\begin{document}
\maketitle

\section{Recent Experience}

\cventry{Jan 2010 -- Current}
        {Company}
        {City}
        {Country}
        {}
        {}

\cventry{Jan 2011 -- Current}
    {Senior Position}
    {}
    {}
    {}
    {
      Roles and responsibilities
    }

\cventry{Jan 2010 -- Jan 2011}
    {Associate Position}
    {}
    {}
    {}
    {
      Roles and responsibilities
    }
\end{document}

Please note that it requires aesthetic improvements.

Best Answer

As suggested in my comment, I would rather stack the positions with dates and locations, and provide a combined paragraph detailing your responsibilities below:

\documentclass{moderncv}

\moderncvtheme{classic}
\moderncvcolor{blue}

\firstname{John}
\familyname{Doe}

\begin{document}
\maketitle

\section{Recent Experience}
\cventry{2011--current}{Senior Position}{Company}{City}{}{}
\cventry{2010--2011}   {Junior Position}{Company}{City}{}{%
  \begin{itemize}
    \item Responsibility 1
    \item Responsibility 2
  \end{itemize}
}

\end{document}

enter image description here