public void getThirdPartyAdministratorBranchesAllByTPAID()
        {
            var _ThirdPartyAdministratorBranch = _thirdPartyAdministratorBranchRepository.getThirdPartyAdministratorBranchesAllByTPAID(11);

            Assert.IsTrue(_ThirdPartyAdministratorBranch != null, "failed");
        }
Beispiel #2
0
 public IEnumerable <DTO.ThirdPartyAdministratorBranch> getThirdPartyAdministratorBranchesAllByTPAID(int _tpaID)
 {
     return(Mapper.Map <IEnumerable <DTO.ThirdPartyAdministratorBranch> >(_iThirdPartyAdministratorBranchRepository.getThirdPartyAdministratorBranchesAllByTPAID(_tpaID)));
 }