Пример #1
0
 public CateogryController(PulpFreshContext _context)
 {
     _categoryService = new CategoryService(_context);
 }
Пример #2
0
 public ProductService(PulpFreshContext context)
 {
     _context = context;
 }
Пример #3
0
 public ClientController(PulpFreshContext pulpFreshContext)
 {
     this.clientService = new ClientService(pulpFreshContext);
 }
Пример #4
0
 public InvoiceController(PulpFreshContext freshContext)
 {
     _invoiceService = new InvoiceService(freshContext);
     _productService = new ProductService(freshContext);
     _clientService  = new ClientService(freshContext);
 }
Пример #5
0
 public LoginController(PulpFreshContext freshContext)
 {
     _userService = new UserService(freshContext);
 }
Пример #6
0
 public ClientController(PulpFreshContext _context)
 {
     _ClientService = new ClientService(_context);
 }
Пример #7
0
 public ProductService(PulpFreshContext context)
 {
     _context         = context;
     _categoryService = new CategoryService(context);
 }
Пример #8
0
 public PresentationController(PulpFreshContext _context)
 {
     _presentationService = new PresentationService(_context);
 }
Пример #9
0
 public ProductoController(PulpFreshContext _context)
 {
     _productService      = new ProductService(_context);
     _CategoryService     = new CategoryService(_context);
     _PresentationService = new PresentationService(_context);
 }
Пример #10
0
 public PresentationService(PulpFreshContext context)
 {
     _context = context;
 }
Пример #11
0
 public InvoiceService(PulpFreshContext freshContext)
 {
     _context        = freshContext;
     _ProductService = new ProductService(_context);
 }
Пример #12
0
 public UserService(PulpFreshContext context) => _context = context;
Пример #13
0
 public ClientService(PulpFreshContext pulpFreshContext)
 {
     context = pulpFreshContext;
 }
Пример #14
0
 public ClientService(PulpFreshContext context)
 {
     _context = context;
 }
Пример #15
0
 public CategoryService(PulpFreshContext context)
 {
     _context = context;
 }