示例#1
0
        public EFCore_Context_vs_Controller()
        {
            _context = new VrsContext();

            _controllerLobs = new LobsController(_lobsService);
            _lobsService    = new LOBsService(_lobsRepository);
        }
示例#2
0
 public B1_TestYourControllerHere_LOB()
 {
     _context        = new VrsContext();
     _controllerLobs = new LobsController(_lobsService);
     _lobsRepository = new LOBsRepository(_context);
     _lobsService    = new LOBsService(_lobsRepository);
 }
示例#3
0
 public Lookup_SQL()
 {
     InitContext();
     _lobsRepository = new LOBsRepository(_vrsContext);
     _lobsService    = new LOBsService(_lobsRepository);
 }
示例#4
0
 public LobsController(ILOBsService lobsService)
 {
     _lobsService = lobsService;
 }
示例#5
0
 public Lookup_InMemory()
 {
     _vrsContext     = new VrsContext();
     _lobsRepository = new LOBsRepository(_vrsContext);
     _lobsService    = new LOBsService(_lobsRepository);
 }