HomeViewPanel serverseitig

This commit is contained in:
rene
2019-08-12 16:49:42 +02:00
parent b37e64834c
commit 9287a37aed
13 changed files with 1672 additions and 1471 deletions

View File

@@ -5732,5 +5732,18 @@ namespace BeWo.Service.ServiceImplementations
throw Utils.CreateBeWoFaultException(exception);
}
}
public IList<HomeViewPanelDC> GetHomeViewPanels()
{
try
{
return MapperFactory.HomeViewPanelDC_HomeViewPanel.MapToNewDCs(
DAOFactory.GenericDAO.GetAllActive<HomeViewPanel>());
}
catch (Exception exception)
{
throw Utils.CreateBeWoFaultException(exception);
}
}
}
}