예제 #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
파일: Verify.cs 프로젝트: jiowchern/Regulus
 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;
 }