Hello,
Maybe someone can help me. I am having trouble with designing this system I decided to it just stuck all the code into one class.
The system takes products out of one database and moves them to another database.
The clients pick settings on how they want the data from the outgoing database formatted to go into the incoming database. So, for example the outgoing database can have a product SKU(a unique number) which can be 12345 XL and the client can choose to slice up that sku and return two skus. Stuff like that.
All my database code is separated but the main code that uses client settings to return things like SKU, Name, Description. These are all in one class but that class is going on 4000 lines and I want to break it up but I'm not sure how.
Maybe someone can help me. I am having trouble with designing this system I decided to it just stuck all the code into one class.
The system takes products out of one database and moves them to another database.
The clients pick settings on how they want the data from the outgoing database formatted to go into the incoming database. So, for example the outgoing database can have a product SKU(a unique number) which can be 12345 XL and the client can choose to slice up that sku and return two skus. Stuff like that.
All my database code is separated but the main code that uses client settings to return things like SKU, Name, Description. These are all in one class but that class is going on 4000 lines and I want to break it up but I'm not sure how.
Comment