Skip to content

Instantly share code, notes, and snippets.

@msarsha
Created February 22, 2018 21:21
Show Gist options
  • Save msarsha/afb329d3361b6dec645a9f6717b31911 to your computer and use it in GitHub Desktop.
Save msarsha/afb329d3361b6dec645a9f6717b31911 to your computer and use it in GitHub Desktop.
export class CaseOne implements CaseLogicHandler{
key: any = 1;
doLogic() {
// case logic
}
}
export class CaseTwo implements CaseLogicHandler{
key: any = 2;
doLogic() {
// case logic
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment