Website openantrag.de
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
OpenAntrag/OpenAntrag/Controllers/StatisticsController.vb

21 lines
477 B

Imports Raven.Client
Public Class StatisticsController
Inherits CommonController
Public Function Index(ByVal statPart As String) As ActionResult
If String.IsNullOrEmpty(statPart) = True Then
statPart = "ProposalCountByRepresentation"
ViewData("StatScroll") = False
Else
ViewData("StatScroll") = True
End If
ViewData("StatPartial") = statPart
Return View()
End Function
End Class