using System.Collections.Generic;
static public class Ubongo
public static void Main()
Console.WriteLine(Ubongo.whoAreWe + "\n");
Console.WriteLine(Ubongo.ourUsers + "\n");
Console.WriteLine(Ubongo.plans + "\n");
Console.WriteLine("Skills required: " + string.Join(",", Ubongo.skills) + "\n");
Console.WriteLine("Optional skills: " + string.Join(",", Ubongo.optionalSkills) + "\n");
Console.WriteLine(Ubongo.youAre["DEFAULT"] + "\n");
Console.WriteLine(Ubongo.youAre["IMPLEMENTATOR"] + "\n");
Console.WriteLine(Ubongo.youAre["JUNIOR/MIDDLE"] + "\n");
Console.WriteLine(Ubongo.youAre["SENIOR/ARCHITECT"] + "\n");
Console.WriteLine("We offer: " + string.Join(",", Ubongo.weOffer) + "\n");
Console.WriteLine(Ubongo.contact + "\n");
public static string whoAreWe = "We are a Startup IT company that's developing a configurable modular Web platform delivered as Saas (Software as a Service).";
public static string ourUsers = "We already have a reputable client that's helped us define the functionalities our platform needs in order to bring divue value to the customer.";
public static string plans = "Our plan is to develop new functionalities and increase the number of customers.";
public static List<string> skills = new List<string>{"MS SQL","OOP","ASP.NET","ASP.NET Core","C#","Entity Framework","Angularjs","Angular"};
public static List<string> optionalSkills = new List<string>{"ORACLE","RabbitMQ","DevOps","BPMN#"};
public static Dictionary<string,string> youAre = new Dictionary<string, string>()
{ "DEFAULT", "We are looking for creative, responsible and hardworking people who are willing to actively participate in the platform's development. Our employees should have excellent communication skills and must be willing to constantly learn and improve themselves. They should love to solve problems. They should be achievement oriented and take pride in their work's results." },
{ "IMPLEMENTATOR", "You have knowledge of business processes, you are familiar with BPMN, you have an analytical mind and good organizational skills"},
{ "JUNIOR/MIDDLE", "You are at the beginning of your programmer's career, you love programming, you have knowledge in some of the above mentioned fields, you are willing to learn" },
{ "SENIOR/ARCHITECT", "You have the necessary knowledge and experience and wish to become our partner :-)" }
public static List<string> weOffer = new List<string>{
"Keeping up to date with new technologies",
"Great working environment - friendly and collaborative",
"Casual dress code and informal communication",
"Flexible working hours / working from home"
public static string contact = "Send your CV and motivation letter to mira.cekanovic@gmail.com";