-
If I have a simple POST controller like:
```csharp
[HttpPost()]
public ActionResult Create([FromBody, BindRequired] TestDto testDto)
{
return testDto;
}
```
where T…
-
-
1. Task: Implement Http POST, PUT, and DELETE methods for medical record management.
2. Details:
- [x] POST: Add a new medical record.
- [x] PUT: Update an existing medical record. Like the /person …
-
Issue: Check toEntity implementation in DTOFound on file: dtos/FacturaDTO.javaOn commit: 09998be1520c173765d177dc38d12c27cbb467d2Go to the Knowledge Base to find more info about this violation
-
- [x] Entity class 작성
- [x] Dto 작성
- [x] 자산 작성 API
- [x] 자산 수정 API
- [x] 자산 삭제 API
- [x] 화면구성과 연결
- [x] 자산이 없을 시 만드는 기능 화면구성에서 추가
-
-
Hey @risen228, great job on creating this package! NestJS creator here.
I recently started working on the `@nestjs/zod` package to simplify the integration between the two (Nest and Zod), and then …
-
```
In the core service there is no need for DTO conversions, since we don't have
an EJB boundary any more.
```
Original issue reported on code.google.com by `past...@gmail.com` on 12 Oct 2010 at 12…
-
Just a list of breaking name changes I make during the dto explosion project.
-
Hello,
I'm currently re-writing an existing API and need to maintain backwards compatibility for my DTOs to minimize front-end changes.
In my database schema, I have two models: `Type` and `Type…