Subversion Repositories SmartDukaan

Rev

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

Rev 763 Rev 1397
Line 42... Line 42...
42
struct LogisticsUser{
42
struct LogisticsUser{
43
	1:string username,
43
	1:string username,
44
	2:i64 providerId
44
	2:i64 providerId
45
}
45
}
46
 
46
 
-
 
47
struct UserEmail{
-
 
48
	1:string emailTo,
-
 
49
	2:string emailFrom,
-
 
50
	3:string subject,
-
 
51
	4:string body,
-
 
52
	5:string source,
-
 
53
	6:string emailType,
-
 
54
	7:bool status,
-
 
55
	8:i64 timestamp
-
 
56
}
-
 
57
 
47
service HelperService{
58
service HelperService{
48
	/**
59
	/**
49
	* For closing the open session in sqlalchemy
60
	* For closing the open session in sqlalchemy
50
	*/
61
	*/
51
	void closeSession(),
62
	void closeSession(),
52
	
63
	
-
 
64
	void saveUserEmailForSending(1:string emailTo, 2:string emailFrom, 3:string subject, 4:string body, 5:string source, 6:string emailType) throws (1:HelperServiceException se),
-
 
65
	
53
	void sendMail(1:Mail mail) throws (1:HelperServiceException se),
66
	void sendMail(1:Mail mail) throws (1:HelperServiceException se),
54
	void sendText(1:TextMessage message) throws (1:HelperServiceException se),
67
	void sendText(1:TextMessage message) throws (1:HelperServiceException se),
55
	
68
	
56
	void addMessage(1:Message message) throws (1:HelperServiceException se),
69
	void addMessage(1:Message message) throws (1:HelperServiceException se),
57
	void updateMessage(1:i64 id, 2:string message) throws (1:HelperServiceException se),
70
	void updateMessage(1:i64 id, 2:string message) throws (1:HelperServiceException se),