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