Ejemplo n.º 1
0
 public List <NotificationDTO> ListAllForUser(int IdUser)
 {
     using (CarRentalEntities context = new CarRentalEntities())
     {
         List <Notification> notifications = context.usp_Notification_List(IdUser).ToList();
         return(notificationMapping.MapToListNotificationDTO(notifications));
     }
 }