Code Monkey home page Code Monkey logo

Comments (4)

wearp avatar wearp commented on July 27, 2024 2

Agree with @phalt - "business logic" is too abstract for this. It becomes loaded for meaningful discussion.

I have a preference for creating boundaries around natural sets of entities. A timely example is ConceptGroup and SubConceptContainer. There is a business rule which says a ConceptGroup must have at least one SubConceptContainer. The ConceptGroup entity seems naturally responsible for enforcing this invariant, not the SubConceptContainer nor a client such as a service layer. Enforcing at this level means the model can be reused (management commands, migrations, etc.) without having to replicate business logic or having to use the service layer.

Where these sets of entities interact, this could be done through a service layer. This layer would be responsible for co-ordination and doing data munging to comply with the model layer's api (there's quite a bit of this).

from django-api-domains.

iemre avatar iemre commented on July 27, 2024 1

This makes sense. I prefer to phrase the same thing in the following way.

Model layer must own the information i) Simple information from data fields e.g. amount field in Order class ii) More complex information computed from simple data fields e.g. think of a method called get_discounted_amount that subtracts the simple data field discount from amount and gives you the discounted amount.

Service / business logic layer must take care of transactions and coordination to make a certain thing happen e.g. save the Order and send an email to the customer. To achieve this the service layer uses the information coming from the model layer.

I have seen previously methods like get_discounted_amount placed in the service layer because it is "business logic", which it probably is. There is definitely logic there, in the sense that it is computing something. But it is information about the model, on its own this method is not making anything happen. I prefer to put these methods that give us information in the model layer.

from django-api-domains.

phalt avatar phalt commented on July 27, 2024 1

So to help clear up the language here:

  • Models control logic around "information" - presenting data, simple computation.
  • Service control co-ordination and transaction logic - collating information from Models, ensuring actions happen together.

I think the term "business logic" is too abstract for this guide, so I think we should drop it.

from django-api-domains.

wearp avatar wearp commented on July 27, 2024

Also, without going crazy, I think we should just experiment. In combination with best practice, we'll find something that suits us.

from django-api-domains.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.