Proyectos de Subversion Android Microlearning - Nuevo Interface

Rev

Rev 11 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 11 Rev 19
Línea 17... Línea 17...
17
    ResultCount getCountNotification();
17
    ResultCount getCountNotification();
Línea 18... Línea 18...
18
 
18
 
19
    @Query("SELECT * FROM tb_notification")
19
    @Query("SELECT * FROM tb_notification")
Línea 20... Línea 20...
20
    List<NotificationCenter> selectAllNotification();
20
    List<NotificationCenter> selectAllNotification();
21
 
21
 
Línea 22... Línea 22...
22
    @Query("SELECT * FROM tb_notification WHERE uuid = :uuid LIMIT 1")
22
    @Query("SELECT * FROM tb_notification WHERE id = :id LIMIT 1")
23
    NotificationCenter selectNotificationByUuid(String uuid);
23
    NotificationCenter selectNotificationByUuid(String id);
Línea 24... Línea 24...
24
 
24
 
25
    @Insert
25
    @Insert
Línea 26... Línea 26...
26
    void insert(NotificationCenter notificationCenter);
26
    void insert(NotificationCenter notificationCenter);
27
 
27
 
Línea 28... Línea 28...
28
    @Update
28
    @Update
29
    void update(NotificationCenter notificationCenter);
29
    void update(NotificationCenter notificationCenter);
Línea 30... Línea 30...
30
 
30