Example #1
0
 public RegisterClientAddressTransaction(string address, string hrmisId, ISingleSmsClientContract theSmsClientContract, IClientInformationDal theDal)
 {
     _Address              = address;
     _HrmisId              = hrmisId;
     _TheAddressDal        = theDal;
     _TheSmsClientContract = theSmsClientContract;
 }
Example #2
0
 public DisableTheListenAddress(int theClientInformationId, int theListenAddressId, IClientInformationDal theDal)
     : base(theClientInformationId, theListenAddressId, theDal)
 {
 }
Example #3
0
 protected UpdateClientInformaitonBase(int clientInfomationId, IClientInformationDal theDal)
 {
     _ClientInfomationId = clientInfomationId;
     _TheDal             = theDal;
 }
Example #4
0
 public void SetUp()
 {
     _TheTarget = new SqlServerImplClientInformation();
 }
 protected SetListenAddressBase(int theClientInformationId, int theListenAddressId, IClientInformationDal theDal)
     : base(theClientInformationId, theDal)
 {
     _TheListenAddressId = theListenAddressId;
 }
Example #6
0
 public ActiveTheClientInformationProxy(int theClientId, ISingleSmsClientContract theClientProxy, IClientInformationDal theDal)
     : base(theClientId, theDal)
 {
     _TheClientProxy = theClientProxy;
 }
Example #7
0
 public ActiveTheClientInformation(int theClientId, IClientInformationDal theDal)
     : base(theClientId, theDal)
 {
 }
 public CallbackDataGateWayImplement(IClientInformationDal theDal, ISingleSmsClientContract theClientProxy)
 {
     _TheDal = theDal;
     _TheSingleClientProxy = theClientProxy;
 }
 public DisableTheClientInformation(int theClientId, IClientInformationDal theDal)
     : base(theClientId, theDal)
 {
 }
 public ActiveTheListenAddressProxy(int theClientInformationId, int theListenAddressId, ISingleSmsClientContract theClientProxy, IClientInformationDal theDal)
     : base(theClientInformationId, theListenAddressId, theDal)
 {
     _TheClientProxy = theClientProxy;
 }
 public DescriptClientInformation(int clientInformationId, string description, IClientInformationDal thedal)
     : base(clientInformationId, thedal)
 {
     _Description = description;
 }
 public ClientInformationDbRestrictLayer(IClientInformationDal theDal)
 {
     _TheDal = theDal;
 }
 public ClearBlockMessages(ISingleSmsClientContract theClientProxy, IClientInformationDal thedal)
 {
     _TheDal         = thedal;
     _TheClientProxy = theClientProxy;
 }
 public AddActivedClientInformation(string hrmisId, string companyDescription, IClientInformationDal thedal)
 {
     _HrmisId            = hrmisId;
     _CompanyDescription = companyDescription;
     _Thedal             = thedal;
 }