Ejemplo n.º 1
0
 public BakeryController(TMDTContext context, IBakery bakeryRepository)
 {
     _repository = bakeryRepository;
     _context    = context;
 }
Ejemplo n.º 2
0
 public ManageOrderController(IOrder orderrepository, IAuthorizationService authorizationService, TMDTContext context)
 {
     _orderrepository      = orderrepository;
     _authorizationService = authorizationService;
     _context = context;
 }
Ejemplo n.º 3
0
 public HomeController(ILogger <HomeController> logger, TMDTContext context)
 {
     _logger  = logger;
     _context = context;
 }
Ejemplo n.º 4
0
 public BakeryBo(TMDTContext context) : base(context)
 {
     _context = context;
 }