IT Praktikum bei Supertext
9. Juni 2011 | Rémy Blättler
public class JobApplication { static void Main() { if(EnoughKnowledge()) { if(Connect(name, mail, coverletter, resume, picture)) { SetDurationInMonths(6); GetExperience(); } } } public bool EnoughKnowledge() { int score = 0; if (PHP || Java || ASP || C++ || C#) { score++; } if (HTML || Javascript || jquery || Ajax || CSS) { score++; } if (SQL || MySQL || SQL Server) { score++; } if(score == 3) return true; else return false; } public bool Connect(string name, string mail, string coverletter, string resume, byte[] picture) { SendMailTo("remy@supertext.ch", name, mail, coverletter, resume, picture); Call("Remy Blättler", "+41 43 500 33 82"); if(Accepted) return true; else return false; } public void GetExperience() { LearnWebTechnologies(ASP.NET, C#, MySql, jquery, CSS); ReleaseEvery2Weeks(ProjectManagement.Scrum); MeetStartupLive(Intense); WorkWithCoolTeam(true); } } |
