public IEnumerable <Accreditor> GetAllAccreditorsByOrganizationID(int clientID, int orgID) { return(Mapper.Map <IEnumerable <Accreditor> >(_educationCredential.GetAllAccreditorsByOrganizationID(clientID, orgID))); }
public void GetAllAccreditorsByOrganizationID() { IEnumerable <HCRGUniversity.Core.BL.Model.Accreditor> accreditor = _educationCredentialBL.GetAllAccreditorsByOrganizationID(14, 1); Assert.IsTrue(accreditor != null, "Unable to get"); }