public OperationResultValue <List <ServiceDataContracts.Alert> > GetAlertListByDateRange(DateTime from, DateTime to)
 {
     return(new OperationResultValue <List <ServiceDataContracts.Alert> >
     {
         Result = alertService.GetAlertListByDateRange(from, to),
         Success = true
     });
 }