Exemplo n.º 1
0
 private AlertViewModel GetAlertViewModel(AlertType?alertType)
 {
     return(new AlertViewModel
     {
         Alerts = alertType != null?alertManager.Get((AlertType)alertType) : alertManager.Get()
     });
 }