Esempio n. 1
0
 public AccountController(IViveroContext accountService)
 {
     _context = accountService;
 }
Esempio n. 2
0
 public DatabaseController(IViveroContext viveroContext)
 {
     _viveroContext = viveroContext;
 }
Esempio n. 3
0
 public ProductController(IViveroContext context, IProductService productService)
 {
     _context        = context;
     _productService = productService;
 }
Esempio n. 4
0
 public ProductService(IViveroContext viveroContext)
 {
     _viveroContext = viveroContext;
 }