public AlertResult(AlertStatusId alertStatus, string desription)
 {
     Description = desription;
     AlertStatus = alertStatus;
 }
 public AlertResult(AlertStatusId alertStatus, string title, string desription)
 {
     Title       = title;
     Description = desription;
     AlertStatus = alertStatus;
 }