Ejemplo n.º 1
0
 public TightsCreateService(ITightsDataAccess tightsDataAccess, ISupplierGetService supplierGetService,
                            IBuyerGetService buyerGetService)
 {
     TightsDataAccess   = tightsDataAccess;
     BuyerGetService    = buyerGetService;
     SupplierGetService = supplierGetService;
 }
Ejemplo n.º 2
0
 public BuyerController(ILogger <BuyerController> logger, IMapper mapper, IBuyerCreateService buyerCreateService, IBuyerGetService buyerGetService, IBuyerUpdateService buyerUpdateService)
 {
     this.Logger             = logger;
     this.BuyerCreateService = buyerCreateService;
     this.BuyerGetService    = buyerGetService;
     this.BuyerUpdateService = buyerUpdateService;
     this.Mapper             = mapper;
 }