public OverviewServices(DPOContext context)
     : base(context)
 {
     this.projectService    = new ProjectServices(context);
     this.htmlService       = new HtmlServices(context);
     this.conversionService = new ConversionServices(context);
 }
 public OverviewServices()
     : base()
 {
     this.projectService    = new ProjectServices();
     this.htmlService       = new HtmlServices();
     this.conversionService = new ConversionServices();
 }