public PortofolioController(IUnitOfWork <PortofolioUOW> uow, IUnitOfWork <TestUOW> obj /*IUnitOfWork uow*/)
 {
     _uow = uow as PortofolioUOW;
 }
 public DashboardController(IHostingEnvironment hosting, IUnitOfWork <PortofolioUOW> uow)
 {
     this.hosting = hosting;
     this.uow     = uow as PortofolioUOW;
 }