예제 #1
0
        public void getAttorneysByAttorenyFirmTypesID()
        {
            var attorneyByName = _attorneyRepository.getAttorneyRecordsByFirmTypeID(1);

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