Example #1
0
        public void getAllAttorneys()
        {
            var attorneyAll = _attorneyRepository.getAttorneyAll();

            Assert.IsTrue(attorneyAll != null, "failed");
        }
Example #2
0
 public IEnumerable <DTO.Attorney> getAttorneyAll()
 {
     return(Mapper.Map <IEnumerable <DTO.Attorney> >(_iAttorneyRepository.getAttorneyAll()));
 }