コード例 #1
0
 /// <summary>
 /// Get orders details list
 /// </summary>
 /// <returns></returns>
 public List <OrderDetailsDto> GetAllList()
 {
     return(Mapper.Map <List <OrderDetailsDto> >(_repository.GetAllList(it => it.Id != Guid.Empty)));
 }