Subversion Repositories SmartDukaan

Rev

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

Rev 4996 Rev 5055
Line 183... Line 183...
183
    list<string> getPermissionsForRoleName(1:string roleName),
183
    list<string> getPermissionsForRoleName(1:string roleName),
184
    
184
    
185
    //Methods to save and read QuickLinks
185
    //Methods to save and read QuickLinks
186
    void saveQuickLink(1:string url, 2:string text) throws(1:HelperServiceException hse),
186
    void saveQuickLink(1:string url, 2:string text) throws(1:HelperServiceException hse),
187
    list<QuickLink> getQuickLinks() throws(1:HelperServiceException hse),
187
    list<QuickLink> getQuickLinks() throws(1:HelperServiceException hse),
188
    void updateQuickLink(1:i64 id, 2:string url, 3:string text) throws(1:HelperServiceException hse)
188
    void updateQuickLink(1:i64 id, 2:string url, 3:string text) throws(1:HelperServiceException hse),
-
 
189
    
-
 
190
	/**
-
 
191
	Returns a list of emails to which product notifications have been sent in a given date range
-
 
192
	*/
-
 
193
	list<string> getEmailsForNotificationsSent(1:i64 startDatetime, 2:i64 endDatetime) throws(1:HelperServiceException hse)
189
}
194
}
190
195