JesseMattson / PurrgentCare

0 stars 0 forks source link

Feature: DTO Pattern Account #74

Closed JesseMattson closed 3 weeks ago

JesseMattson commented 1 month ago

Title: Convert remaining account requests to be request objects, leverage DTOs, and mappers

Description: Start leveraging request objects, response objects, dtos, and mappers in order to create protection of data and eventual grouping of calls within the domain.

Technical Details: Typical flow should be the following: Request from client --> Controller (input: request body == request object) --> Service (input: request object) --> Mapper (input: request object, output: model object) --> Repository (input: id, model object, etc) --> Mapper (input: model object, output: response object) --> Service(output: response object) --> Controller(output: response object)

Acceptance Criteria:

Convert all necessary calls inside the pet domain to leverages request/response objects Meet DoD Demo of changes working locally Additional reading: https://www.baeldung.com/java-dto-pattern https://saranganjana.medium.com/data-transfer-object-dto-in-java-66c4f3075362

Sample PR being created to work through: https://github.com/JesseMattson/PurrgentCare/pull/60