in c# you can use partial class to create another class with the same name
for the entities, it's a good solution to use Prestasharp class for the standard fields and create juste with the same class name for the special fields do you want to use.
sample :
Before :
public class customer : PrestaShopEntity, IPrestaShopFactoryEntity
After
public partial class customer : PrestaShopEntity, IPrestaShopFactoryEntity
Hello,
in c# you can use partial class to create another class with the same name
for the entities, it's a good solution to use Prestasharp class for the standard fields and create juste with the same class name for the special fields do you want to use.
sample :
Before : public class customer : PrestaShopEntity, IPrestaShopFactoryEntity
After public partial class customer : PrestaShopEntity, IPrestaShopFactoryEntity
What do you think ?