public void UpdateAccreditor() { DLModelAccreditor.AccreditorName = "testing dfg"; DLModelAccreditor.AccreditorID = 1; int result = _educationCredentialBL.UpdateAccreditor(DLModelAccreditor); Assert.IsTrue(result > 0, "Unable to update"); }
public int UpdateAccreditor(DTO.Accreditor accreditor) { return(_educationCredential.UpdateAccreditor(Mapper.Map <DTO.Accreditor, HCRGUniversity.Core.Data.Model.Accreditor>(accreditor))); }