+stockLevel: int+supplier: string+profitLoss: floatclassUser {}classProduct{+login()User<|--AdminclassPurchase{classAdmin{+viewProducts()Admin -->Product :"manages"+generateSalesReport()User <|--Customer+makePayment()+purchaseID: int+comparePrices()+name: string+register()Admin -->SalesReport:"generates"Customer-->Purchase: "records"}+timePeriod: stringCustomer-->Product :"views"classDiagramCustomer-->Payment :"makes"}+date: date+paymentID: intclassSalesReport{+manageProducts()classPayment{}}+totalSales: float+quantity: int+paymentDate: date+viewSalesOrder()}+supplierDetails: string+price: float+productID: intclassCustomer{+paymentMethod: string+amount: float}+stockLevel: int+supplier: string+profitLoss: floatclassUser {}classProduct{+login()User<|--AdminclassPurchase{classAdmin{+viewProducts()Admin -->Product :"manages"+generateSalesReport()User <|--Customer+makePayment()+purchaseID: int+comparePrices()+name: string+register()Admin -->SalesReport:"generates"Customer-->Purchase: "records"}+timePeriod: stringCustomer-->Product :"views"classDiagramCustomer-->Payment :"makes"}+date: date+paymentID: intclassSalesReport{+manageProducts()classPayment{}}+totalSales: float+quantity: int+paymentDate: date+viewSalesOrder()}+supplierDetails: string+price: float+productID: intclassCustomer{+paymentMethod: string+amount: float}

Untitled Bingo - Call List

(Print) Use this randomly generated list as your call list when playing the game. There is no need to say the BINGO column name. Place some kind of mark (like an X, a checkmark, a dot, tally mark, etc) on each cell as you announce it, to keep track. You can also cut out each item, place them in a bag and pull words from the bag.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  1. +stockLevel : int
  2. +supplier : string
  3. +profitLoss : float
  4. class User {
  5. }
  6. class Product {
  7. +login()
  8. User <|-- Admin
  9. class Purchase {
  10. class Admin {
  11. +viewProducts()
  12. Admin --> Product : "manages"
  13. +generateSalesReport()
  14. User <|-- Customer
  15. +makePayment()
  16. +purchaseID : int
  17. +comparePrices()
  18. +name : string
  19. +register()
  20. Admin --> SalesReport : "generates"
  21. Customer --> Purchase : "records"
  22. }
  23. +timePeriod : string
  24. Customer --> Product : "views"
  25. classDiagram
  26. Customer --> Payment : "makes"
  27. }
  28. +date : date
  29. +paymentID : int
  30. class SalesReport {
  31. +manageProducts()
  32. class Payment {
  33. }
  34. }
  35. +totalSales : float
  36. +quantity : int
  37. +paymentDate : date
  38. +viewSalesOrder()
  39. }
  40. +supplierDetails : string
  41. +price : float
  42. +productID : int
  43. class Customer {
  44. +paymentMethod : string
  45. +amount : float
  46. }