Esempio n. 1
0
        public Service(Regulus.Remoting.ISoulBinder binder, Storage storage , int account_id)
        {
            // TODO: Complete member initialization
            this._Binder = binder;
            this._Storage = storage;

            _Id = account_id;
        }
Esempio n. 2
0
 public Verify(Regulus.Remoting.ISoulBinder binder , Storage storage)
 {
     _Storage = storage;
     this._Binder = binder;
 }
Esempio n. 3
0
 public Service(Regulus.Remoting.ISoulBinder _Binder, Storage _Storage)
 {
     // TODO: Complete member initialization
     this._Binder = _Binder;
     this._Storage = _Storage;
 }
Esempio n. 4
0
 public User(Regulus.Remoting.ISoulBinder binder , Storage storage)
 {
     _Storage = storage;
     _Enable = true;
     this._Binder = binder;
 }