示例#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;
        }
示例#2
0
 public Verify(Regulus.Remoting.ISoulBinder binder , Storage storage)
 {
     _Storage = storage;
     this._Binder = binder;
 }
示例#3
0
 public Service(Regulus.Remoting.ISoulBinder _Binder, Storage _Storage)
 {
     // TODO: Complete member initialization
     this._Binder = _Binder;
     this._Storage = _Storage;
 }
示例#4
0
文件: User.cs 项目: jiowchern/Regulus
 public User(Regulus.Remoting.ISoulBinder binder , Storage storage)
 {
     _Storage = storage;
     _Enable = true;
     this._Binder = binder;
 }