public void getAttorneyAndAttorneyFirm() { var attorneyFirmByAll = _attorneyRepository.getAttorneyAndAttorneyFirmByName("k", 0, 5); Assert.IsTrue(attorneyFirmByAll != null, "failed"); }
public DTO.Paged.PagedAttorneyFirm getAttorneyAndAttorneyFirmByName(string _searchText, int _skip, int _take) { return(Mapper.Map <MMC.Core.BL.Model.Paged.AttorneyFirm, DTO.Paged.PagedAttorneyFirm>(_iAttorneyRepository.getAttorneyAndAttorneyFirmByName(_searchText, _skip, _take))); }