Esempio n. 1
0
 public RequestInboundController(
     IRequestInboundRepository _RequestInbound
     , IUserRepository _user
     , IWarehouseRepository warehouse
     , IProductOrServiceRepository product
     , ICategoryRepository category
     , IProductOutboundRepository productOutbound
     , IProductInboundRepository productInbound
     , ITemplatePrintRepository templatePrint
     , IBranchRepository branch
     )
 {
     RequestInboundRepository  = _RequestInbound;
     userRepository            = _user;
     WarehouseRepository       = warehouse;
     ProductRepository         = product;
     categoryRepository        = category;
     productInboundRepository  = productInbound;
     productOutboundRepository = productOutbound;
     templatePrintRepository   = templatePrint;
     branchRepository          = branch;
 }