Example #1
0
 public GevechtRepo(IGevechtContext gContext, IPokemonContext pContext, IHomeContext hContext, IAanvalContext anContext, IAccountContext acContext)
 {
     this.gCtx  = gContext;
     this.pCtx  = pContext;
     this.hCtx  = hContext;
     this.anCtx = anContext;
     this.acCtx = acContext;
 }
 public HomeRepository(IHomeContext iHomeContext)
 {
     this.iHomeContext = iHomeContext;
 }
Example #3
0
 public HomeRepo(IHomeContext hContext, IPokemonContext pContext, IAanvalContext anContext)
 {
     this.hCtx  = hContext;
     this.pCtx  = pContext;
     this.anCtx = anContext;
 }