Ejemplo n.º 1
0
 public CompaniesController(IMaterialDispositionContext context,
                            IMaterialInventoryService materialInventoryService, IServantInventoryService servantInventoryService, IServantDispositionContext servantDispositionContext,
                            CompanyTemplateGenerator companyTemplateGenerator, CompanyInventoryGenerator companyInventoryGenerator)
 {
     _context = context;
     _materialInventoryService  = materialInventoryService;
     _servantInventoryService   = servantInventoryService;
     _servantDispositionContext = servantDispositionContext;
     _companyTemplateGenerator  = companyTemplateGenerator;
     _companyInventoryGenerator = companyInventoryGenerator;
 }
Ejemplo n.º 2
0
 public ServantsInventoryController(IServantInventoryService inventoryService)
 {
     _inventoryService = inventoryService;
 }