├── ARCHITECTURE.md ├── Ass[10] ├── CHANGELOG.md ├── creational_patterns │ ├── README.md │ ├── abstract_factory │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── compliance_report.cpython-313.pyc │ │ │ ├── report_factory.cpython-313.pyc │ │ │ └── risk_report.cpython-313.pyc │ │ ├── compliance_report.py │ │ ├── report_factory.py │ │ └── risk_report.py │ ├── builder │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── mitigation_plan.cpython-313.pyc │ │ │ └── mitigation_plan_builder.cpython-313.pyc │ │ ├── mitigation_plan.py │ │ └── mitigation_plan_builder.py │ ├── factory_method │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── notification_base.cpython-313.pyc │ │ │ ├── payment_processor.cpython-313.pyc │ │ │ └── processor.cpython-313.pyc │ │ ├── notification_base.py │ │ └── payment_processor.py │ ├── prototype │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── alert.cpython-313.pyc │ │ │ └── alert_cache.cpython-313.pyc │ │ ├── alert.py │ │ └── alert_cache.py │ ├── simple_factory │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ ├── user.cpython-313.pyc │ │ │ └── user_factory.cpython-313.pyc │ │ ├── user.py │ │ └── user_factory.py │ └── singleton │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ └── database_connection.cpython-313.pyc │ │ └── database_connection.py ├── main.py ├── src │ ├── README.md │ ├── admin.py │ ├── alert.py │ ├── analyst.py │ ├── backup.py │ ├── mitigation_plan.py │ ├── risk.py │ ├── risk_report.py │ ├── task.py │ └── user.py └── tests │ ├── README.md │ ├── test_abstract_factory.py │ ├── test_builder.py │ ├── test_factory_method.py │ ├── test_prototype.py │ ├── test_simple_factory_run.py │ └── test_singleton.py ├── Ass[11] ├── README.md ├── factories │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ └── repository_factory.cpython-313.pyc │ └── repository_factory.py ├── main.py ├── repositories │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ ├── base_repository.cpython-313.pyc │ │ └── risk_repository.cpython-313.pyc │ ├── base_repository.py │ ├── filesystem │ │ ├── __init__.py │ │ └── file_system_risk_repository.py │ ├── inmemory │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-313.pyc │ │ │ └── in_memory_risk_repository.cpython-313.pyc │ │ └── in_memory_risk_repository.py │ └── risk_repository.py ├── src │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ └── risk.cpython-313.pyc │ └── risk.py └── tests │ ├── __init__.py │ └── test_in_memory_risk_repository.py ├── Ass[12] ├── README.md ├── __pycache__ │ └── main.cpython-313.pyc ├── api │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ ├── mitigation_plan_api.cpython-313.pyc │ │ ├── risk_api.cpython-313.pyc │ │ └── user_api.cpython-313.pyc │ ├── mitigation_plan_api.py │ ├── risk_api.py │ └── user_api.py ├── docs │ ├── __init__.py │ └── openapi.json ├── main.py ├── repositories │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ ├── base_repository.cpython-313.pyc │ │ ├── mitigation_plan_repository.cpython-313.pyc │ │ ├── risk_repository.cpython-313.pyc │ │ └── user_repository.cpython-313.pyc │ ├── base_repository.py │ ├── inmemory │ │ ├── __pycache__ │ │ │ ├── in_memory_mitigation_plan_repository.cpython-313.pyc │ │ │ ├── in_memory_risk_repository.cpython-313.pyc │ │ │ └── in_memory_user_repository.cpython-313.pyc │ │ ├── in_memory_mitigation_plan_repository.py │ │ ├── in_memory_risk_repository.py │ │ └── in_memory_user_repository.py │ ├── mitigation_plan_repository.py │ ├── risk_repository.py │ └── user_repository.py ├── services │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ ├── mitigation_plan_service.cpython-313.pyc │ │ ├── risk_service.cpython-313.pyc │ │ └── user_service.cpython-313.pyc │ ├── mitigation_plan_service.py │ ├── risk_service.py │ └── user_service.py ├── src │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-313.pyc │ │ ├── mitigation_plan.cpython-313.pyc │ │ ├── risk.cpython-313.pyc │ │ └── user.cpython-313.pyc │ ├── mitigation_plan.py │ ├── risk.py │ └── user.py └── tests │ ├── api │ ├── __init__.py │ ├── test_mitigation_plan_api.py │ ├── test_risk_api.py │ └── test_user_api.py │ └── services │ ├── __init__.py │ ├── test_mitigation_plan_service.py │ ├── test_risk_service.py │ └── test_user_service.py ├── Ass[13] └── Links to the branch ├── Ass[14] ├── CONTRIBUTING.md ├── README.md ├── REFLECTION.md └── ROADMAP.md ├── Ass[5] ├── Reflection.md ├── Test_cases.md ├── Use _case_specification.md └── Use_case_diagram.md ├── Ass[6] ├── Product Backlog.md ├── Reflection.md ├── Sprint Planning.md └── User_Stories.md ├── Ass[7] ├── Kanban_Explanation.md ├── README.md ├── Reflection.md ├── Screenshorts.md └── template_analysis.md ├── Ass[8] ├── Activity_Diagram_Explanation.md ├── Activity_Diagrams.md ├── Reflections.md ├── State_Transaction_Diagram.md └── Transaction_Diagram_Explanation.md ├── Ass[9] ├── Class_Diagram.md ├── Domain_Model_Documentation.md └── Reflection.md ├── LICENSE.md ├── README.md ├── REFLECTION.md ├── SPECIFICATION.md ├── STAKEHOLDER_ANALYSIS.md └── SYSTEM_REQUIREMENTS.md /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /Ass[10]/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/CHANGELOG.md -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/README.md -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/abstract_factory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/abstract_factory/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/abstract_factory/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/abstract_factory/__pycache__/compliance_report.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/abstract_factory/__pycache__/compliance_report.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/abstract_factory/__pycache__/report_factory.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/abstract_factory/__pycache__/report_factory.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/abstract_factory/__pycache__/risk_report.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/abstract_factory/__pycache__/risk_report.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/abstract_factory/compliance_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/abstract_factory/compliance_report.py -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/abstract_factory/report_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/abstract_factory/report_factory.py -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/abstract_factory/risk_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/abstract_factory/risk_report.py -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/builder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/builder/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/builder/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/builder/__pycache__/mitigation_plan.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/builder/__pycache__/mitigation_plan.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/builder/__pycache__/mitigation_plan_builder.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/builder/__pycache__/mitigation_plan_builder.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/builder/mitigation_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/builder/mitigation_plan.py -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/builder/mitigation_plan_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/builder/mitigation_plan_builder.py -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/factory_method/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/factory_method/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/factory_method/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/factory_method/__pycache__/notification_base.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/factory_method/__pycache__/notification_base.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/factory_method/__pycache__/payment_processor.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/factory_method/__pycache__/payment_processor.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/factory_method/__pycache__/processor.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/factory_method/__pycache__/processor.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/factory_method/notification_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/factory_method/notification_base.py -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/factory_method/payment_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/factory_method/payment_processor.py -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/prototype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/prototype/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/prototype/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/prototype/__pycache__/alert.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/prototype/__pycache__/alert.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/prototype/__pycache__/alert_cache.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/prototype/__pycache__/alert_cache.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/prototype/alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/prototype/alert.py -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/prototype/alert_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/prototype/alert_cache.py -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/simple_factory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/simple_factory/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/simple_factory/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/simple_factory/__pycache__/user.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/simple_factory/__pycache__/user.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/simple_factory/__pycache__/user_factory.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/simple_factory/__pycache__/user_factory.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/simple_factory/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/simple_factory/user.py -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/simple_factory/user_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/simple_factory/user_factory.py -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/singleton/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/singleton/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/singleton/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/singleton/__pycache__/database_connection.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/singleton/__pycache__/database_connection.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[10]/creational_patterns/singleton/database_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/creational_patterns/singleton/database_connection.py -------------------------------------------------------------------------------- /Ass[10]/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/main.py -------------------------------------------------------------------------------- /Ass[10]/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/src/README.md -------------------------------------------------------------------------------- /Ass[10]/src/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/src/admin.py -------------------------------------------------------------------------------- /Ass[10]/src/alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/src/alert.py -------------------------------------------------------------------------------- /Ass[10]/src/analyst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/src/analyst.py -------------------------------------------------------------------------------- /Ass[10]/src/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/src/backup.py -------------------------------------------------------------------------------- /Ass[10]/src/mitigation_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/src/mitigation_plan.py -------------------------------------------------------------------------------- /Ass[10]/src/risk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/src/risk.py -------------------------------------------------------------------------------- /Ass[10]/src/risk_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/src/risk_report.py -------------------------------------------------------------------------------- /Ass[10]/src/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/src/task.py -------------------------------------------------------------------------------- /Ass[10]/src/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/src/user.py -------------------------------------------------------------------------------- /Ass[10]/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/tests/README.md -------------------------------------------------------------------------------- /Ass[10]/tests/test_abstract_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/tests/test_abstract_factory.py -------------------------------------------------------------------------------- /Ass[10]/tests/test_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/tests/test_builder.py -------------------------------------------------------------------------------- /Ass[10]/tests/test_factory_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/tests/test_factory_method.py -------------------------------------------------------------------------------- /Ass[10]/tests/test_prototype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/tests/test_prototype.py -------------------------------------------------------------------------------- /Ass[10]/tests/test_simple_factory_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/tests/test_simple_factory_run.py -------------------------------------------------------------------------------- /Ass[10]/tests/test_singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[10]/tests/test_singleton.py -------------------------------------------------------------------------------- /Ass[11]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/README.md -------------------------------------------------------------------------------- /Ass[11]/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[11]/factories/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/factories/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[11]/factories/__pycache__/repository_factory.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/factories/__pycache__/repository_factory.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[11]/factories/repository_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/factories/repository_factory.py -------------------------------------------------------------------------------- /Ass[11]/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/main.py -------------------------------------------------------------------------------- /Ass[11]/repositories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[11]/repositories/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/repositories/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[11]/repositories/__pycache__/base_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/repositories/__pycache__/base_repository.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[11]/repositories/__pycache__/risk_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/repositories/__pycache__/risk_repository.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[11]/repositories/base_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/repositories/base_repository.py -------------------------------------------------------------------------------- /Ass[11]/repositories/filesystem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[11]/repositories/filesystem/file_system_risk_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/repositories/filesystem/file_system_risk_repository.py -------------------------------------------------------------------------------- /Ass[11]/repositories/inmemory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[11]/repositories/inmemory/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/repositories/inmemory/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[11]/repositories/inmemory/__pycache__/in_memory_risk_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/repositories/inmemory/__pycache__/in_memory_risk_repository.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[11]/repositories/inmemory/in_memory_risk_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/repositories/inmemory/in_memory_risk_repository.py -------------------------------------------------------------------------------- /Ass[11]/repositories/risk_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/repositories/risk_repository.py -------------------------------------------------------------------------------- /Ass[11]/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[11]/src/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/src/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[11]/src/__pycache__/risk.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/src/__pycache__/risk.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[11]/src/risk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/src/risk.py -------------------------------------------------------------------------------- /Ass[11]/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[11]/tests/test_in_memory_risk_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[11]/tests/test_in_memory_risk_repository.py -------------------------------------------------------------------------------- /Ass[12]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/README.md -------------------------------------------------------------------------------- /Ass[12]/__pycache__/main.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/__pycache__/main.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[12]/api/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/api/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/api/__pycache__/mitigation_plan_api.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/api/__pycache__/mitigation_plan_api.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/api/__pycache__/risk_api.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/api/__pycache__/risk_api.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/api/__pycache__/user_api.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/api/__pycache__/user_api.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/api/mitigation_plan_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/api/mitigation_plan_api.py -------------------------------------------------------------------------------- /Ass[12]/api/risk_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/api/risk_api.py -------------------------------------------------------------------------------- /Ass[12]/api/user_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/api/user_api.py -------------------------------------------------------------------------------- /Ass[12]/docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[12]/docs/openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/docs/openapi.json -------------------------------------------------------------------------------- /Ass[12]/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/main.py -------------------------------------------------------------------------------- /Ass[12]/repositories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[12]/repositories/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/repositories/__pycache__/base_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/__pycache__/base_repository.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/repositories/__pycache__/mitigation_plan_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/__pycache__/mitigation_plan_repository.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/repositories/__pycache__/risk_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/__pycache__/risk_repository.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/repositories/__pycache__/user_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/__pycache__/user_repository.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/repositories/base_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/base_repository.py -------------------------------------------------------------------------------- /Ass[12]/repositories/inmemory/__pycache__/in_memory_mitigation_plan_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/inmemory/__pycache__/in_memory_mitigation_plan_repository.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/repositories/inmemory/__pycache__/in_memory_risk_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/inmemory/__pycache__/in_memory_risk_repository.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/repositories/inmemory/__pycache__/in_memory_user_repository.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/inmemory/__pycache__/in_memory_user_repository.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/repositories/inmemory/in_memory_mitigation_plan_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/inmemory/in_memory_mitigation_plan_repository.py -------------------------------------------------------------------------------- /Ass[12]/repositories/inmemory/in_memory_risk_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/inmemory/in_memory_risk_repository.py -------------------------------------------------------------------------------- /Ass[12]/repositories/inmemory/in_memory_user_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/inmemory/in_memory_user_repository.py -------------------------------------------------------------------------------- /Ass[12]/repositories/mitigation_plan_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/mitigation_plan_repository.py -------------------------------------------------------------------------------- /Ass[12]/repositories/risk_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/risk_repository.py -------------------------------------------------------------------------------- /Ass[12]/repositories/user_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/repositories/user_repository.py -------------------------------------------------------------------------------- /Ass[12]/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[12]/services/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/services/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/services/__pycache__/mitigation_plan_service.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/services/__pycache__/mitigation_plan_service.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/services/__pycache__/risk_service.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/services/__pycache__/risk_service.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/services/__pycache__/user_service.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/services/__pycache__/user_service.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/services/mitigation_plan_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/services/mitigation_plan_service.py -------------------------------------------------------------------------------- /Ass[12]/services/risk_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/services/risk_service.py -------------------------------------------------------------------------------- /Ass[12]/services/user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/services/user_service.py -------------------------------------------------------------------------------- /Ass[12]/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[12]/src/__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/src/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/src/__pycache__/mitigation_plan.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/src/__pycache__/mitigation_plan.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/src/__pycache__/risk.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/src/__pycache__/risk.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/src/__pycache__/user.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/src/__pycache__/user.cpython-313.pyc -------------------------------------------------------------------------------- /Ass[12]/src/mitigation_plan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/src/mitigation_plan.py -------------------------------------------------------------------------------- /Ass[12]/src/risk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/src/risk.py -------------------------------------------------------------------------------- /Ass[12]/src/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/src/user.py -------------------------------------------------------------------------------- /Ass[12]/tests/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[12]/tests/api/test_mitigation_plan_api.py: -------------------------------------------------------------------------------- 1 | def test_dummy_plan(): 2 | assert True -------------------------------------------------------------------------------- /Ass[12]/tests/api/test_risk_api.py: -------------------------------------------------------------------------------- 1 | def test_dummy_risk(): 2 | assert True -------------------------------------------------------------------------------- /Ass[12]/tests/api/test_user_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/tests/api/test_user_api.py -------------------------------------------------------------------------------- /Ass[12]/tests/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ass[12]/tests/services/test_mitigation_plan_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/tests/services/test_mitigation_plan_service.py -------------------------------------------------------------------------------- /Ass[12]/tests/services/test_risk_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/tests/services/test_risk_service.py -------------------------------------------------------------------------------- /Ass[12]/tests/services/test_user_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[12]/tests/services/test_user_service.py -------------------------------------------------------------------------------- /Ass[13]/Links to the branch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[13]/Links to the branch -------------------------------------------------------------------------------- /Ass[14]/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[14]/CONTRIBUTING.md -------------------------------------------------------------------------------- /Ass[14]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[14]/README.md -------------------------------------------------------------------------------- /Ass[14]/REFLECTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[14]/REFLECTION.md -------------------------------------------------------------------------------- /Ass[14]/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[14]/ROADMAP.md -------------------------------------------------------------------------------- /Ass[5]/Reflection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[5]/Reflection.md -------------------------------------------------------------------------------- /Ass[5]/Test_cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[5]/Test_cases.md -------------------------------------------------------------------------------- /Ass[5]/Use _case_specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[5]/Use _case_specification.md -------------------------------------------------------------------------------- /Ass[5]/Use_case_diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[5]/Use_case_diagram.md -------------------------------------------------------------------------------- /Ass[6]/Product Backlog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[6]/Product Backlog.md -------------------------------------------------------------------------------- /Ass[6]/Reflection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[6]/Reflection.md -------------------------------------------------------------------------------- /Ass[6]/Sprint Planning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[6]/Sprint Planning.md -------------------------------------------------------------------------------- /Ass[6]/User_Stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[6]/User_Stories.md -------------------------------------------------------------------------------- /Ass[7]/Kanban_Explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[7]/Kanban_Explanation.md -------------------------------------------------------------------------------- /Ass[7]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[7]/README.md -------------------------------------------------------------------------------- /Ass[7]/Reflection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[7]/Reflection.md -------------------------------------------------------------------------------- /Ass[7]/Screenshorts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[7]/Screenshorts.md -------------------------------------------------------------------------------- /Ass[7]/template_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[7]/template_analysis.md -------------------------------------------------------------------------------- /Ass[8]/Activity_Diagram_Explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[8]/Activity_Diagram_Explanation.md -------------------------------------------------------------------------------- /Ass[8]/Activity_Diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[8]/Activity_Diagrams.md -------------------------------------------------------------------------------- /Ass[8]/Reflections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[8]/Reflections.md -------------------------------------------------------------------------------- /Ass[8]/State_Transaction_Diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[8]/State_Transaction_Diagram.md -------------------------------------------------------------------------------- /Ass[8]/Transaction_Diagram_Explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[8]/Transaction_Diagram_Explanation.md -------------------------------------------------------------------------------- /Ass[9]/Class_Diagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[9]/Class_Diagram.md -------------------------------------------------------------------------------- /Ass[9]/Domain_Model_Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[9]/Domain_Model_Documentation.md -------------------------------------------------------------------------------- /Ass[9]/Reflection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/Ass[9]/Reflection.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/README.md -------------------------------------------------------------------------------- /REFLECTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/REFLECTION.md -------------------------------------------------------------------------------- /SPECIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/SPECIFICATION.md -------------------------------------------------------------------------------- /STAKEHOLDER_ANALYSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/STAKEHOLDER_ANALYSIS.md -------------------------------------------------------------------------------- /SYSTEM_REQUIREMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ongeziwe-Qwayede-01/Risk-Management-System/HEAD/SYSTEM_REQUIREMENTS.md --------------------------------------------------------------------------------