femaref / evetradercs

Automatically exported from code.google.com/p/evetradercs
0 stars 0 forks source link

Replace usage of EF objects in Requests with Dto objects #34

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Currently, EF objects are used in all requests (except for only static one - 
RefTypesRequest, which uses RefTypesDto). This should be replaced with a usage 
of only Dto objects in the requests, as we only need the data, not the 
concurrency in these cases - requests don't and shouldn't know about the 
database implementation, the Dtos are enough.

This would enhance the handling of cases where only the data is needed and not 
concurrency, like the initial requests when adding a new character (which 
currently is a very ugly hack).

Original issue reported on code.google.com by fema...@googlemail.com on 17 Nov 2010 at 3:23