Monday, June 23, 2014

Re: OO in Django

Hi
mmmm I think I would do as follows :P

#models.py code

class Customer(model.Model):
    ***

class Transation(model.Model):
     ***
     customer = models.ForeignKey(Customer)


class Person(Customer):
      ***    

class Corporation(Customer):
      ***

*** you object atributes


2014-06-23 11:18 GMT-03:00 Eduardo Basílio <eduardoafonsobasilio@gmail.com>:

Hello, 
Can you help me on a question OO in Django?

How the Transaction class can reference Person or Corporation? 
* Customer is an abstract class


--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/26474e7c-f79e-416b-8569-9edb689dc191%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.



--
------------------------------------------------------------
Ricardo Daniel Quiroga - L2Radamanthys

   Msn: l2radamanthys@gmail.com
           ricardo_quiu@hotmail.com
                   http://github.com/L2Radamanthys
   Twitter:    @l2Radamanthys
---------------------------------------------------------

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAO2-wHa%3Da6%3Drz%3DXFoK%3DwCcqK8HPRhstDc3Mo2Dps0TpnNhgq2A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment