public void getThirdPartyAdministratorsAll()
        {
            var _ThirdPartyAdministratorBranch = _thirdPartyAdministratorBranchRepository.getThirdPartyAdministratorBranchesAll();

            Assert.IsTrue(_ThirdPartyAdministratorBranch != null, "failed");
        }
Ejemplo n.º 2
0
 public IEnumerable <ThirdPartyAdministratorBranch> getThirdPartyAdministratorBranchesAll()
 {
     return(Mapper.Map <IEnumerable <DTO.ThirdPartyAdministratorBranch> >(_iThirdPartyAdministratorBranchRepository.getThirdPartyAdministratorBranchesAll()));
 }