An analysis model for the mail order company

Assignment Help C/C++ Programming
Reference no: EM131026738

1. Overview

An analysis model for the mail order company. Review the solution to the Early Elaboration Assignment.

You will continue based upon the scenario discussed below.

1. Update your model, presenting a set of UML class relationship diagrams describing your discovered and updated classes.

-The focus of your diagrams should be on generalization and aggregation relationships. If a class does not participate in one of these kinds of relationships, it is acceptable for you to show it as a single class object in its own diagram, although you should show dependencies and labelled associations if they make your model clearer.

-Each class must be shown (in at least one diagram) with its complete set of attributes and functions as known to your model so far. All attributes and functions must be defensible from the information provided.

2. For the provided scenario, prepare a UML sequence diagram demonstrating that your model is capable of representing the actions of that use case.

-You may use reference frames to factor out long repeated sequences of actions.
Compile these deliverables into a single PDF file.

1.2 General Overview
Note: as in any real-world design, not all of the details in the problem statement will necessarily be relevant to the higher levels of this design. Furthermore, ambiguous and inconsistent language are par for the course.

2. Submitting the Assignment
UML class diagrams and UML sequence diagrams may be prepared using any of the tools listed on the course Library page or with other drawing tools that you may have available. You, not your drawing tool, are responsible for the readability and accuracy of your diagrams.

3. Scenario

Customer Order Processing

1: The mail-order facility (MOF) receives an order from customer Jones. The order is for three items.

2: After checking on warehouse stock levels, the MOF determines that the Norfolk warehouse can supply the first two items, and the Memphis warehouse can supply the third.

3: The order is divided accordingly and the packing slips for the two parts of the order are sent to the warehouses.

4: Each warehouse receives the packing slip, assembles the order, and ships it to the customer address listed on the slip.

5: The MOF prints a single invoice, which is mailed to the customer.

Alternative: Out of Stock

2: After checking on warehouse stock levels, the MOF determines that one of the three items is out of stock at all warehouses, but that the Norfolk warehouse can supply the other two items.

3: A packing slip for those two items is sent to the Norfolk warehouse, which assembles the partial order and ships it to the customer address listed on the slip.

4: A back-order slip is created for Jone's request for the remaining out-of-stock item and kept on file at the MOF.

5: The MOF prints an invoice, including notification of the back-ordered item and mails it to the customer.

4. Notes

As in any real-world design, not all of the details in the problem statement will necessarily be relevant to the higher levels of this design. Ambiguous and inconsistent language are par for the course.

What objects should appear in the diagram? Only objects that participate actively (sending or receiving messages). Objects that are simply passed as parameters may be listed as such in a particular message call, but need not have their own time line.

Pay attention to which steps are direct consequences of earlier steps. That gives you a clue as to which messages are part of the function body of an earlier call.

Remember that a message is a function call. If the scenario indicates that information is being passed, that information may be passed as a parameter to a message or as the return values from a message, but might not itself constitute a message.

If a scenario gives a specific name to an object, use that name in your sequence diagram. E.g., in the first scenario, use jones: Customer rather than the anonymous object :Customer.

Do not forget that you can use reference frames to factor out long repeated sequences of actions.

Attachment:- early laboration.rar

Verified Expert

This assignment is about drawing UML class diagram and UML sequence diagram for Mail-Order Facility(MOF) System. Tools used are Sdedit to draw UML Sequence diagram and Dia to draw UML LCass diagram. Diagrams organised into single pdf file.

Reference no: EM131026738

Questions Cloud

Calculate the standard emf of the haber process : The Haber process is the principal industrial route for converting nitrogen into ammonia: N2(g) + 3H2(g) → 2NH3(g), What is being oxidized, and what is being reduced?
Explain roles and responsibilities of information technology : Explain the roles and responsibilities of an information technology department to support an organization's IT strategy.
How is cloud security different than traditional security : Discuss how security for a traditional information system will change when you transfer that system into the cloud. Specifically what are the security implications of using each of the three cloud service models
How many coulombs of electrical charge would be required : The pontoons would contain cathodes and would be filled with hydrogen gas formed by the electrolysis of water. It has been estimated that it would require about 7 X 108mol of H2 to provide the buoyancy to lift the ship (J. Chem. Educ., 1973, Vol. ..
An analysis model for the mail order company : An analysis model for the mail order company - UML class diagrams and UML sequence diagrams may be prepared using any of the tools listed on the course Library page or with other drawing tools.
What is meant by the term oxidizing agent : What is meant by the term oxidation? On which side of an oxidation half-reaction do the electrons appear? What is meant by the term oxidant?
Write the overall cell reaction and individual half-reaction : Magnesium is produced commercially by electrolysis from a molten salt using a cell similar to the one shown here. What salt is used as the electrolyte? Which electrode is the anode, and which one is the cathode?
Find the orthogonal projection p of e^x onto x : Consider vector space C[0,1] with scalar product: for any two functions f(x), g(x)
What do employers want from their potential employees : What do employers want from their potential employees - Read through each article listed below on how to effectively interview, to negotiating your salary and first job.

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Allow single play a simple two dice game of chance against

Write a program that allows a single Player (the user) to play a simple two dice game of chance against

  Write a for loop that displays the following set of numbers

Write a for loop that displays the following set of numbers 0, 5, 10, 15, 20, 25 ...... 500.

  Create a front­end system for a vending machine

Create a front­end system for a vending machine written in C. The vending machine serves all kinds of pastry treats. The company's name is Penelope's Pastry Delights and as such, the executable you are creating will be called "ppd"

  Write a program to print the permutation

Given an integer n and a permutation of numbers 1, 2 ... , n-1, n write a program to print the permutation that lexicographically precedes the given input permutation.

  Store a list of student info

Store a list of student info, (id number, First name and Last name) using a link list. The ID is the key field. The program should implement a linked list using arrays.The program should process the following operations

  How can these dire consequences be avoided

What is a "dangling pointer"? What dire consequences could result from dereferencing a dangling pointer? How can these dire consequences be avoided?

  Design a class include a constructor and members

Design your own C++ class. Keep it simple but use the readings this week to include a constructor, members and methods. Be sure to test your class by constructing it and using its functionality

  Implements a cyclic redundancy check algorithm

Write a C++ program that Implements a cyclic redundancy check algorithm in C++: The program should provide a mechanism for inputting a stream of data 128 bytes in length. It should calculate a 32-bit CRC for that data. It should output the data strea..

  Write a computer program to prepare a linear support vector

write a computer program to prepare a linear support vector machine svm. prepare a report and deliver the report

  Economy of kenya has a budget deficit

The economy of Kenya has a budget deficit of KSH 500B. This deficit is likely to be funded through domestic borrowing and taxation. Using an appropriate model, explain the macroeconomic implications of such a move.

  Program of a class date which displays the date

Write a C++ program of a Class Date which displays the date. Use the subsequent requirements:

  Explain the inheritance concept in java programming.

Explain why the inheritance concept is useful for a programmer.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd