public void UpdateIndustryResearchContent() { DLModelIndustryResearch.IndustryResearchID = 1; DLModelIndustryResearch.IndustryResearchContent = "asdf sda df sfsdf sda"; int result = _carouselSetupBL.UpdateIndustryResearchContent(DLModelIndustryResearch); Assert.IsTrue(result > 0, "Unable to Add"); }
public int UpdateIndustryResearchContent(IndustryResearch industryResearchContent) { return(_carouselSetUp.UpdateIndustryResearchContent(Mapper.Map <DTO.IndustryResearch, HCRGUniversity.Core.Data.Model.IndustryResearch>(industryResearchContent))); }