Giter Site home page Giter Site logo

albumprinter's Introduction

AlbumPrinter

How to run the solution

Run AlbumPrinter.sln with Visual Studio.
Set AlbumPrinter.Web as startup project.
Start.

APIs

  • GET api/orders/{orderID}

  • POST api/orders
    Example request body:

{
    "OrderItems": [
        {
            "ProductType": "calendar",
            "Quantity": 2
        },
        {
            "ProductType": "photoBook",
            "Quantity": 2
        },
        {
            "ProductType": "canvas",
            "Quantity": 2
        },
        {
            "ProductType": "cards",
            "Quantity": 2
        },
        {
            "ProductType": "mug",
            "Quantity": 5
        }
    ]
}
  • Both requests return Order model as the response.
    Example response:
{
    "OrderID": "91740d8a-d66d-4a3c-bfcf-92393a2e9d8a",
    "RequiredBinWidth": 287.4,
    "OrderItems": [
        {
            "ProductType": "calendar",
            "Quantity": 2
        },
        {
            "ProductType": "photoBook",
            "Quantity": 2
        },
        {
            "ProductType": "canvas",
            "Quantity": 2
        },
        {
            "ProductType": "cards",
            "Quantity": 2
        },
        {
            "ProductType": "mug",
            "Quantity": 5
        }
    ]
}

Assumption

OrderItems that have the same ProductType are not merged by the API. For example, if the Order below is sent:

{
    "OrderItems": [
        {
            "ProductType": "mug",
            "Quantity": 2
        },
        {
            "ProductType": "mug",
            "Quantity": 1
        }
    ]
}

The API will return RequiredBinWidth as 94 * 2 = 188. The reasoning is, although there are a total of 3 mugs, they can be different types of mugs which cannot be stacked.

albumprinter's People

Contributors

derebaba avatar

Stargazers

 avatar

Watchers

 avatar

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.