public IEnumerable <HomeContent> GetAllHomeContentByOrganizationID(int clientID, int orgID)
 {
     return(Mapper.Map <IEnumerable <HomeContent> >(_carouselSetUp.GetAllHomeContentByOrganizationID(clientID, orgID)));
 }
        public void GetAllHomeContentByOrganizationID()
        {
            IEnumerable <BLModel.HomeContent> homeCarousel = _carouselSetupBL.GetAllHomeContentByOrganizationID(14, 100);

            Assert.IsTrue(homeCarousel != null, "Unable to get");
        }