Exemplo n.º 1
0
 public IEnumerable<Dto.NotificaDto> ReadNotifiche()
 {
     try
     {
         var wcf = new EntitiesModelService();
         var notifiche = wcf.ReadNotificas();
         return notifiche;
     }
     catch (Exception ex)
     {
         UtilityError.Write(ex);
     }
     return null;
 }