public async Task <IEnumerable <WidgetPositionConfigModel> > GetZoneConfigListAsync(string zone)
 {
     return((await _widgetManager.GetWidgetsByZoneAsync(zone)).Select(t => new WidgetPositionConfigModel()
     {
         Id = t.Id,
         Name = t.Title,
         WidgetId = t.WidgetId,
         Order = t.DisplayOrder,
     }));
 }