예제 #1
0
 public DivisionService(
     OdContext context,
     DaDataService daDataService,
     AddressService addressService)
 {
     this._context   = context;
     _daDataService  = daDataService;
     _addressService = addressService;
 }
예제 #2
0
 public AddressCreator(OdContext context) : base(context)
 {
 }
예제 #3
0
 public AddressService(OdContext context) : base(context)
 {
 }
예제 #4
0
 public AddressService_Test()
 {
     _addressService = DiServiceBuilder.GetService <AddressService>();;
     _context        = DiServiceBuilder.GetService <OdContext>();;
 }
예제 #5
0
 public FilterTest()
 {
     _context = DiServiceBuilder.GetService <OdContext>();
 }
예제 #6
0
 public UserCreator(OdContext context) : base(context)
 {
 }
예제 #7
0
 protected BaseTestScenario(OdContext context)
 {
     _context = context;
 }
예제 #8
0
 public AbstractRepo(OdContext context)
 {
 }
예제 #9
0
 public BaseCreator(OdContext context)
 {
     _context = context;
 }
예제 #10
0
 public DivisionCreator(OdContext context) : base(context)
 {
     _addressCreator = new AddressCreator(context);
 }
예제 #11
0
 protected BaseCrudService(OdContext context)
 {
     _context = context;
 }