Subversion Repositories SmartDukaan

Rev

Rev 8865 | Rev 22647 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8865 Rev 8905
Line 566... Line 566...
566
    
566
    
567
 
567
 
568
    public static void storeExpertReview(long entityId, List<ExpertReview> expertReviews) throws Exception {
568
    public static void storeExpertReview(long entityId, List<ExpertReview> expertReviews) throws Exception {
569
    	StorageManager.getStorageManager().storeExpertReview(entityId, expertReviews);      
569
    	StorageManager.getStorageManager().storeExpertReview(entityId, expertReviews);      
570
    }
570
    }
-
 
571
    
-
 
572
    public static void storeExpertReview(long entityId, ExpertReview expertReview) throws Exception {
-
 
573
    	StorageManager.getStorageManager().storeExpertReview(entityId, expertReview);      
-
 
574
    }
571
 
575
 
572
    public static void deleteExpertReview(long entityId, int index) throws Exception {
576
    public static void deleteExpertReview(long entityId, int index) throws Exception {
573
    	StorageManager.getStorageManager().deleteExpertReview(entityId, index);      
577
    	StorageManager.getStorageManager().deleteExpertReview(entityId, index);      
574
    }
578
    }
575
 
579