コード例 #1
0
 public IEnumerable <Accreditor> GetAllAccreditorsByOrganizationID(int clientID, int orgID)
 {
     return(Mapper.Map <IEnumerable <Accreditor> >(_educationCredential.GetAllAccreditorsByOrganizationID(clientID, orgID)));
 }
コード例 #2
0
        public void GetAllAccreditorsByOrganizationID()
        {
            IEnumerable <HCRGUniversity.Core.BL.Model.Accreditor> accreditor = _educationCredentialBL.GetAllAccreditorsByOrganizationID(14, 1);

            Assert.IsTrue(accreditor != null, "Unable to get");
        }