void Main()
{
    var you = ITJuniorSalesManager.GetITSalesManagers().First(x => x.ExperienceInTechCompany >= 1);
    you.HaveGender ("Diverse", "Female", "Male");
     
    var hardSkills = you.Know("IT affinity", "Project coordination", " Resource capacity planning ", "Forecasting");
    
    you.DoCoolStuff("Act on your own responsibility") // Generate ideas, develop processes

    var languages = you.Speak("German", "English");
  
    var softSkills = you.AreTeamplayer() &&  // You advise and support the management, the IT management and the departments with insights from IT controlling
                     you.AreCommunicator() && // Interact with customers and team members, have good moderating capacities,  have a high degree of empathy and perception, are an open conversation partner for individuals and groups, like to visit customers
                     you.HaveMindset() && // You have the ability to understand the needs of different stakeholders and to mediate between them. You have organizational skills, service orientation and strong communication skills, which you can also express in English.                  
    

    you.LoveTo("Control");
  	  
    you.Enjoy("HQ Blautal", "Inspiring Team", "State-of-the-art equipment", "Open minds", "Gym under the apple trees", "for more see benefits");

    if (hardSkills && softSkills && languages && you.Bock())
    {
        you.ApplyTo("bewerbung@artiso.com");
        We.LookForward ("2CU");
    }
}