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