예제 #1
0
 public CustomController(PoGoDbContext db, ILoggerFactory loggerf) : base(db, loggerf)
 {
     Log     = loggerf.CreateLogger(this.GetType());
     RpcType = Enums.RpcRequestType.Custom;
 }
예제 #2
0
 public FunctionLayer(PoGoDbContext db, ILoggerFactory loggerf) : base(db, loggerf)
 {
     Fort = new FortFuncs(db);
 }
예제 #3
0
 public RequestLayer(PoGoDbContext db, ILoggerFactory loggerf)
 {
     _requestProto = null;
     this.Database = db;
     ProtoResponse = new ResponseEnvelope();
 }
예제 #4
0
 public FortFuncs(PoGoDbContext _db)
 {
     db = _db;
 }
예제 #5
0
 public AuthorizationLayer(PoGoDbContext db, ILoggerFactory loggerf)
     : base(db, loggerf)
 {
 }
예제 #6
0
 public BaseRpcController(PoGoDbContext db, ILoggerFactory loggerf) : base(db, loggerf)
 {
 }
예제 #7
0
 public ResponseLayer(PoGoDbContext db, ILoggerFactory loggerf)
     : base(db, loggerf)
 {
 }