public InformationModule(IInformationRepository informationRepository) : base("/info") { Get["/contact"] = _ => { var results = informationRepository.GetContactInformation(); return Response.AsJson(results.Select(ci => new ContactInfoDto { Address = ci.Address, Email = ci.Email, Fax = ci.Fax, Phone = ci.Phone, Title = ci.Title, VisitingAddress = ci.VisitingAddress, ContactPersons = MapContactPersons(ci.ContactPersons), GenericFields = ci.GenericFields })).AsCacheable(DateTime.Now.AddDays(1)); }; Get["/opening-hours"] = _ => { var results = informationRepository.GetOpeningHoursInformation(); return Response.AsJson(results.Select(oh => new OpeningHoursDto { Title = oh.Title, Hours = null != oh.LocationOrDayOfWeekToTime ? oh.LocationOrDayOfWeekToTime.Select(kvp => new OpeningHourInfoDto{Title = kvp.Key, Hours = kvp.Value}).ToArray() : new OpeningHourInfoDto[0], Phone = oh.Phone, Location = oh.Location, SubTitle = oh.SubTitle, Url = oh.Url, UrlText = oh.UrlText })).AsCacheable(DateTime.Now.AddDays(1)); }; }