Ejemplo n.º 1
0
        public EntityPagedDto <BranchOfficeDto> GetEntityPaged(EntityPagedRequestDto <BranchOfficeDto> request)
        {
            var result = new EntityPagedDto <BranchOfficeDto>();

            result.Items = AutoMapper.Mapper.Map <IReadOnlyList <BranchOfficeDto> >(this.entityRepository.GetAll().ToList());

            return(result);
        }
Ejemplo n.º 2
0
 public EntityPagedDto <CityDto> GetEntityPaged(EntityPagedRequestDto <CityDto> request)
 {
     throw new NotImplementedException();
 }