|
|
@ -19,6 +19,11 @@ namespace BBWY.Server.Business |
|
|
|
SendMessage(channel, teamId, shopId, appCode, title, content, string.Empty, senderId, recevierId, false); |
|
|
|
} |
|
|
|
|
|
|
|
public void SendMessage(string channel, string teamId, string shopId, string appCode, string title, string content, string customTypeCode, string senderId, string recevierId) |
|
|
|
{ |
|
|
|
SendMessage(channel, teamId, shopId, appCode, title, content, customTypeCode, senderId, recevierId, false); |
|
|
|
} |
|
|
|
|
|
|
|
public void SendMessage(string channel, string teamId, string shopId, string appCode, string title, object jsonContent, string customTypeCode, string senderId, string recevierId) |
|
|
|
{ |
|
|
|
SendMessage(channel, teamId, shopId, appCode, title, JsonConvert.SerializeObject(jsonContent), customTypeCode, senderId, recevierId, true); |
|
|
|