Exemple #1
0
 public AlertListItem(
     AAlert_Alert aAlert,
     IApplicationLocale locale)
 {
     AAlert = aAlert;
     Locale = locale;
 }
Exemple #2
0
        public AlertListItem CreateAlertListItem(AAlert_Alert aAlert)
        {
            var model = new AlertListItem(aAlert, Locale);

            return(model);
        }
Exemple #3
0
 public Alert CreateAlert(AAlert_Alert aAlert)
 {
     return(new Alert(aAlert, Locale));
 }