public void UpdateNewsSection()
        {
            BLModel.NewsSectionTitle = "testing tesing 11";
            BLModel.NewsSectionType  = "Section";
            BLModel.NewsSectionID    = 1;
            int result = _newsSectionBL.UpdateNewsSection(BLModel);

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