public UserWebsiteManager(IWebsiteDal websiteDal)
 {
     this.websiteDal = websiteDal;
 }
 public WebsiteManager(IWebsiteDal websiteDal, IGenericRepository <Product> productRepository)
 {
     this.websiteDal        = websiteDal;
     this.productRepository = productRepository;
 }
 public WebsiteManager(IWebsiteDal repostory) : base(repostory)
 {
 }