예제 #1
0
        public void getAttorneysByAttorenyFirmByID()
        {
            var attorneyByName = _attorneyRepository.getAttorneyByAttorneyFirmID(2, 0, 4);

            Assert.IsTrue(attorneyByName != null, "failed");
        }
예제 #2
0
 public DTO.Paged.PagedAttorney getAttorneyByAttorneyFirmID(int _attorneyFirmID, int _skip, int _take)
 {
     return(Mapper.Map <MMC.Core.BL.Model.Paged.Attorney, DTO.Paged.PagedAttorney>(_iAttorneyRepository.getAttorneyByAttorneyFirmID(_attorneyFirmID, _skip, _take)));
 }