示例#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;
 }