public static List <Notification> GetAll()
 {
     return(Converters.NotificationConverter.ListToDTO(NotificationDAL.Get()));
 }
Exemple #2
0
 public Notification Get(int Id)
 {
     return(notificationDAL.Get(Id));
 }