示例#1
0
 public MessagingTemplatesController(IChannelTemplateStore <MessagingTemplate> channelTemplateStore)
     : base(channelTemplateStore)
 {
 }
示例#2
0
 public EmailTemplatesController(IChannelTemplateStore <EmailTemplate> channelTemplateStore)
     : base(channelTemplateStore)
 {
 }
示例#3
0
 public SmsTemplatesController(IChannelTemplateStore <SmsTemplate> channelTemplateStore)
     : base(channelTemplateStore)
 {
 }
示例#4
0
 protected ChannelTemplatesController(IChannelTemplateStore <T> channelTemplateStore)
 {
     this.channelTemplateStore = channelTemplateStore;
 }