Esempio n. 1
0
        public void getAttorneyAndAttorneyFirm()
        {
            var attorneyFirmByAll = _attorneyRepository.getAttorneyAndAttorneyFirmByName("k", 0, 5);

            Assert.IsTrue(attorneyFirmByAll != null, "failed");
        }
Esempio n. 2
0
 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)));
 }