コード例 #1
0
 public SendSMSController(IInsuranceServices insuranceServices,
                          ITemplateServices templateServices,
                          ISMSServices smsServices)
 {
     _insuranceServices = insuranceServices;
     _templateServices  = templateServices;
     _smsServices       = smsServices;
 }
コード例 #2
0
 public SMSServices(IPluginService pluginService, ISMSServices smsService)
     : base(pluginService)
 {
     this.MSMService = smsService;
     ID       = new Guid("{24F679A5-D9D9-461E-850A-E71E2FA6DB43}");
     Name     = "短信定时发送服务";
     Category = "Background Services";
 }
コード例 #3
0
 public SmsGateWayController(ISMSServices smsServices)
 {
     _smsServices = smsServices;
 }
コード例 #4
0
ファイル: SaleOrderBLL.cs プロジェクト: thienma1258/Web-tmdt
 public SaleOrderBLL(IUnitOfWork unitOfWork, ISMSServices SMSServices, IPaypalServicesGatewayBLL PaypalServicesGatewayBLL) : base(unitOfWork)
 {
     this.SMSServices = SMSServices;
     this._PaypalServicesGatewayBLL = PaypalServicesGatewayBLL;
 }
コード例 #5
0
 public SmsHistoryController(ISMSServices smsServices)
 {
     _smsServices = smsServices;
 }