public void AddNewsSection()
        {
            BLModel.NewsSectionTitle = "testing tesing";
            BLModel.NewsSectionType  = "Section";
            int result = _newsSectionBL.AddNewsSection(BLModel);

            Assert.IsTrue(result > 0, "Unable to Add");
        }
 public int AddNewsSection(DTO.NewsSection newsSection)
 {
     return(_newsSection.AddNewsSection(Mapper.Map <DTO.NewsSection, HCRGUniversity.Core.Data.Model.NewsSection>(newsSection)));
 }