using System.Collections.Generic;
public static void Main()
var _jobTypDir = new Dictionary<JobType, string>
{JobType.FullTime, "trasnlated"},
{JobType.PartTime, "trasnlated"}
var jobbtype = _jobTypDir.SingleOrDefault(x => x.Key == JobType.FullTime).Value;
Console.WriteLine(jobbtype);