Inheritance: IControlViewFactory
Ejemplo n.º 1
0
 public DesignService(IWorkspaceService workspaceService, CompilerService compilerService,Report report)
 {
     this.WorkspaceService = workspaceService;
     this.compilerService = compilerService;
     controlViewFactory = new ControlViewFactory (this);
     PixbufRepository = new PixbufRepository (){ Report = report};
     IsDesign = true;
     Zoom = 1;
     Render = true;
     Report = report;
 }
Ejemplo n.º 2
0
 public DesignService(IWorkspaceService workspaceService,ReportRenderer renderer,PixbufRepository pixbufRepository,CompilerService compilerService, Report report)
 {
     this.PixbufRepository = pixbufRepository;
     this.WorkspaceService = workspaceService;
     this.Compiler = compilerService;
     this.renderer = renderer;
     controlViewFactory = new ControlViewFactory (renderer);
     IsDesign = true;
     Report = report;
     Zoom = 1;
     Render = true;
     IsDirty = true;
 }