public FluxogramaController(ICorrenteDrawingAppService corrente, INoDrawingAppService noDrawing)
 {
     _corrente  = corrente;
     _noDrawing = noDrawing;
 }
 public NoDrawingAppService(IUnitOfWork unitOfWork, ICorrenteDrawingAppService correnteDrawingBO)
 {
     _unitOfw    = unitOfWork;
     _correnteBo = correnteDrawingBO;
 }
 public CorrenteDrawingController(ICorrenteDrawingAppService correnteDrawingAppService)
 {
     _correnteDrawingAppService = correnteDrawingAppService;
 }