« Dto » : différence entre les versions

De Banane Atomic
Aller à la navigationAller à la recherche
Ligne 2 : Ligne 2 :
= [https://en.wikipedia.org/wiki/Data_transfer_object Definition] =
= [https://en.wikipedia.org/wiki/Data_transfer_object Definition] =
Data Transfer Object is an object that carries data between processes.<br>
Data Transfer Object is an object that carries data between processes.<br>
They are used to aggregate data to reduce the number of calls between the client and the server.
They are used to aggregate data to reduce the number of calls between the client and the server.<br>
DTOs are simple objects that should not contain any business logic but may contain serialization and deserialization mechanisms for transferring data over the wire.

Version du 24 septembre 2020 à 14:12

Definition

Data Transfer Object is an object that carries data between processes.
They are used to aggregate data to reduce the number of calls between the client and the server.
DTOs are simple objects that should not contain any business logic but may contain serialization and deserialization mechanisms for transferring data over the wire.