コード例 #1
0
 public RegisterClientAddressTransaction(string address, string hrmisId, ISingleSmsClientContract theSmsClientContract, IClientInformationDal theDal)
 {
     _Address              = address;
     _HrmisId              = hrmisId;
     _TheAddressDal        = theDal;
     _TheSmsClientContract = theSmsClientContract;
 }
コード例 #2
0
 public ActiveTheClientInformationProxy(int theClientId, ISingleSmsClientContract theClientProxy, IClientInformationDal theDal)
     : base(theClientId, theDal)
 {
     _TheClientProxy = theClientProxy;
 }
コード例 #3
0
 public CallbackDataGateWayImplement(IClientInformationDal theDal, ISingleSmsClientContract theClientProxy)
 {
     _TheDal = theDal;
     _TheSingleClientProxy = theClientProxy;
 }
コード例 #4
0
 public ActiveTheListenAddressProxy(int theClientInformationId, int theListenAddressId, ISingleSmsClientContract theClientProxy, IClientInformationDal theDal)
     : base(theClientInformationId, theListenAddressId, theDal)
 {
     _TheClientProxy = theClientProxy;
 }
コード例 #5
0
 public ClearBlockMessages(ISingleSmsClientContract theClientProxy, IClientInformationDal thedal)
 {
     _TheDal         = thedal;
     _TheClientProxy = theClientProxy;
 }