public IHttpActionResult GetFilters()
 {
     BLL.ReportDeliveryShedule bll = new BLL.ReportDeliveryShedule();
     Library.DTO.Notification  notification;
     DTO.ReportDeliveryShedule.SupportDataContainer result = bll.GetFilters(out notification);
     return(Ok(new Library.DTO.ReturnData <DTO.ReportDeliveryShedule.SupportDataContainer>()
     {
         Data = result, Message = notification, TotalRows = 0
     }));
 }