👋 Welcome To the TheJengo.Program.cs
using TheJengo . Enums ;
using TheJengo . Models ;
namespace TheJengo
{
public static class Program
{
public static Task Main ( )
{
Dictionary < Area , string [ ] > technologies = new ( )
{
{ Area . Languages , new string [ ] { "C#" , "Javascript" , "TypeScript" , "Java" , "C" , "PHP" } } ,
{ Area . Backends , new string [ ] { ".NET" , "Laravel" } } ,
{ Area . Frontends , new string [ ] { "Angular" , "Vue" , "React" } } ,
{ Area . Databases , new string [ ] { "MSSQL" , "Azure SQL" , "MySQL" , "NoSQL" } } ,
{ Area . Devops , new string [ ] { "AzureDevOps" , "Docker" , "Git" } } ,
{ Area . Interests , new string [ ] { "Azure" , "Cloud" , "Go" , "Microservices" , "CQRS" , "Event Driven Development" , "TDD" , "BDD" } }
} ;
Developer dev = new ( )
{
Name = "Cengiz Cebeci" ,
Previous = new List < Role > ( ) {
new Role ( "HexTransforma Healthcare" , "Junior Backend Developer" ) ,
new Role ( "wtw" , "Software Engineer" )
} ,
Current = new Role ( "CAI" , "Software Engineer" ) ,
Technologies = technologies
} ;
Console . WriteLine ( dev . ToString ( ) ) ;
}
}
}