foreach (int i in Enumerable.Range(1, 10))
{
foreach (int j in Enumerable.Range(1, 10))
{
Console.WriteLine($"{i} {j}");
}
}
Dictionary<string, Dictionary<string, SomeObject>> a;
a["10.03.2017"]["01:30"] = new SomeObject{FREE = true, PRICE=1234}