public async Task <IEnumerable <Timeslot> > Get(string monthName, string monthId, string date)
        {
            var result = await _firebaseDataService.GetTimelotsForDay(monthName, monthId, date);

            return(Timeslot.FromDictionary(result));
        }