Skip to content

Instantly share code, notes, and snippets.

@scottyinternet
scottyinternet / MembershipUML.puml
Created July 10, 2023 16:07
PlantUML Quiz Response
@startuml
Exception AtaInvalidNameException {
}
Exception AtaInvalidZipCodeException {
}
Exception AtaInvalidPhoneNumberException {
}
Exception AtaInvalidProfileParameterException {
}
var Timezone = {
set : function() {
var date = new Date();
date.setTime(date.getTime() + (1000*24*60*60*1000));
var expires = "; expires=" + date.toGMTString();
document.cookie = "timezone=" + (-date.getTimezoneOffset() * 60) + expires + "; path=/";
}
}

Unit1 PromiseDao Design Review

Overview

The PromiseDao only supports one source for retrieving promises: the Delivery Promise Service (DPS). We already need to get promises from another service, the Order Fulfillment Service (OFS), so this is a good time to make the design more flexible.

Use Cases

    The CS representatives will be able to compare promises from different services to verify if promises are on track.