| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926 |
- <?xml version="1.0" encoding="utf-8" standalone="yes"?>
- <sim-project version="13.85" multi-file="no" uid="simp2ea5f8008af94134b20730821dbeba15">
- <meta>
- <name>QLiberace</name>
- <authors>Dalibor Votruba</authors>
- <description>SAAS based functional processing (automatic) backend with payments</description>
- </meta>
- <counters models="18">
- <entity-names>
- <counter>
- <item-type stereotype="component" type-id="component" type="Component" />
- <value>5</value>
- </counter>
- <counter>
- <item-type type-id="erd-entity" type="Entity" />
- <value>26</value>
- </counter>
- <counter>
- <item-type type-id="class" type="Class" />
- <value>16</value>
- </counter>
- <counter>
- <item-type type-id="object" type="Object" />
- <value>7</value>
- </counter>
- <counter>
- <item-type type-id="drawing-line" type="Line" />
- <value>1</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-start-end" type="Start End" />
- <value>3</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-process" type="Process" />
- <value>5</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-data" type="Data" />
- <value>10</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-transfer" type="Transfer" />
- <value>5</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-predefined-process" type="Predefined Process" />
- <value>1</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-decision" type="Decision" />
- <value>4</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-summing-junction" type="Summing Junction" />
- <value>1</value>
- </counter>
- </entity-names>
- <entity-ids>
- <counter>
- <item-type type-id="group" type="Group" />
- <value>2881</value>
- </counter>
- <counter>
- <item-type type-id="component" type="Component" />
- <value>6</value>
- </counter>
- <counter>
- <item-type type-id="relationship" type="Association" />
- <value>19</value>
- </counter>
- <counter>
- <item-type type-id="property" type="Property" />
- <value>15</value>
- </counter>
- <counter>
- <item-type type-id="diagram-description" type="Diagram Description" />
- <value>2</value>
- </counter>
- <counter>
- <item-type type-id="requirement" type="Requirement" />
- <value>15</value>
- </counter>
- <counter>
- <item-type type-id="erd-entity" type="Entity" />
- <value>29</value>
- </counter>
- <counter>
- <item-type type-id="erd-relationship" type="Relationship" />
- <value>70</value>
- </counter>
- <counter>
- <item-type type-id="universal-connector" type="Universal Connector" />
- <value>26</value>
- </counter>
- <counter>
- <item-type type-id="class" type="Class" />
- <value>17</value>
- </counter>
- <counter>
- <item-type type-id="object" type="Object" />
- <value>8</value>
- </counter>
- <counter>
- <item-type type-id="template-parameter" type="Template Parameter" />
- <value>29</value>
- </counter>
- <counter>
- <item-type type-id="generalization" type="Generalization" />
- <value>15</value>
- </counter>
- <counter>
- <item-type type-id="dependency" type="Dependency" />
- <value>2</value>
- </counter>
- <counter>
- <item-type type-id="drawing-line" type="Line" />
- <value>12</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-start-end" type="Start End" />
- <value>24</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-process" type="Process" />
- <value>6</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-flow" type="Flow" />
- <value>26</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-data" type="Data" />
- <value>11</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-transfer" type="Transfer" />
- <value>23</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-predefined-process" type="Predefined Process" />
- <value>2</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-decision" type="Decision" />
- <value>5</value>
- </counter>
- <counter>
- <item-type type-id="flowchart-summing-junction" type="Summing Junction" />
- <value>13</value>
- </counter>
- <counter>
- <item-type type-id="comment" type="Comment" />
- <value>2</value>
- </counter>
- <counter>
- <item-type type-id="containment" type="Containment" />
- <value>6</value>
- </counter>
- </entity-ids>
- <diagrams>
- <counter>
- <type>SoftwareIdeasModeler.Core.Diagrams.UmlDiagrams.UmlComponentDiagram</type>
- <value>1</value>
- </counter>
- <counter>
- <type>SoftwareIdeasModeler.Core.Diagrams.Other.RequirementDiagram</type>
- <value>1</value>
- </counter>
- <counter>
- <type>SoftwareIdeasModeler.Core.Diagrams.Other.EntityRelationshipDiagram</type>
- <value>4</value>
- </counter>
- <counter>
- <type>SoftwareIdeasModeler.Core.Diagrams.UmlDiagrams.UmlObjectDiagram</type>
- <value>7</value>
- </counter>
- <counter>
- <type>SoftwareIdeasModeler.Core.Diagrams.Other.FlowchartDiagram</type>
- <value>1</value>
- </counter>
- </diagrams>
- <fields>
- <counter>
- <type>SoftwareIdeasModeler.Core.DiagramItems.Erd.ErdEntityAttribute</type>
- <value>247</value>
- </counter>
- <counter>
- <type>SoftwareIdeasModeler.Core.DiagramItems.Erd.ErdEntityIndex</type>
- <value>8</value>
- </counter>
- <counter>
- <type>SoftwareIdeasModeler.Core.DiagramItems.Fields.OperationField</type>
- <value>36</value>
- </counter>
- </fields>
- </counters>
- <alias-groups />
- <management uid="md-64da5925cccf40f881cbd349de3ac60c" name="" task-id-sequence="0">
- <working-schedule uid="ws-2807cc5250c044ec85bb85dcc5f7f146" hours="8" monday="8" tuesday="8" wednesday="8" thursday="8" friday="8" saturday="0" sunday="0" />
- <persons>
- <person id="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57">
- <first-name>Dalibor</first-name>
- <last-name>Votruba</last-name>
- <role />
- <e-mail />
- <phone-number />
- <description />
- <color>#00000000</color>
- <working-schedule uid="ws-8d5061554bea46fba84de4f496d6d5f1" hours="8" monday="8" tuesday="8" wednesday="8" thursday="8" friday="8" saturday="0" sunday="0" />
- </person>
- </persons>
- <teams />
- <sprints />
- <projects />
- <modules />
- <tasks />
- <to-dos />
- </management>
- <glossary id="glsr-c62334eae23c4f22971de71d88128a88" />
- <types default="UML">
- <type-sets>
- <type-set file="MsSqlTypes.xml" />
- <type-set file="UmlTypes.xml" />
- </type-sets>
- <custom-types>
- <parameters />
- <types>
- <type id="Class:2626a7fd504946ccaa1eb090b6d27d0d" name="Base" class-ref="2626a7fd504946ccaa1eb090b6d27d0d" />
- <type id="Class:874b9f152e0b445dbcfeee89df6a5ea4" name="Processor" class-ref="874b9f152e0b445dbcfeee89df6a5ea4" />
- <type id="Class:84ab40101b0b4e5caa621287dc10fd91" name="Notification" class-ref="84ab40101b0b4e5caa621287dc10fd91" />
- <type id="datetime (MsSql.datetime)" name="datetime (MsSql.datetime)" />
- <type id="Class:7546dafc2b0d406bb9cf489c5eeb4aff" name="Customer" class-ref="7546dafc2b0d406bb9cf489c5eeb4aff" />
- <type id="Class:cb92b4b50dc847aebfdbd90ce365a1eb" name="Invoice" class-ref="cb92b4b50dc847aebfdbd90ce365a1eb" />
- <type id="Class:d0073f5bfa1e416a993d396a5c5f3719" name="CustomerService" class-ref="d0073f5bfa1e416a993d396a5c5f3719" />
- <type id="nvarchar (MsSql.nvarchar)" name="nvarchar (MsSql.nvarchar)" />
- <type id="NULL" name="NULL" />
- </types>
- </custom-types>
- </types>
- <items>
- <item id="4c0b5740d5454593b2f30e99077948f6" cid="PROP013" type="property" owner="26f7ba623f254dd28b60add6ba05099c" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:26:55" visibility="private">
- <structural-feature type="Notification" type-id="Class:84ab40101b0b4e5caa621287dc10fd91" />
- </item>
- <item id="132ce45236e54d6da05ae53d64712729" cid="PROP002" type="property" owner="7268ad1b0bd249218475144e6941ccdf" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:42:51" visibility="private">
- <structural-feature type="Customer" type-id="Class:7546dafc2b0d406bb9cf489c5eeb4aff" />
- </item>
- <item id="3ea00702610044d585111749ee746ce0" cid="PROP008" type="property" owner="cc2cc1a81f0b46d9990261d829151310" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:06:13" visibility="private">
- <structural-feature type="Base" type-id="Class:2626a7fd504946ccaa1eb090b6d27d0d" />
- </item>
- <item id="de0957d8d7ac42eab57e579c2cefbf47" cid="PROP005" type="property" owner="802906c103994cfb8c5117077f30e22a" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:43:31" visibility="private">
- <structural-feature type="Customer" type-id="Class:7546dafc2b0d406bb9cf489c5eeb4aff" />
- </item>
- <item id="7e127fd6ffb44997a6ed00e09680e29c" cid="PROP007" type="property" owner="cc2cc1a81f0b46d9990261d829151310" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:06:13" visibility="private">
- <structural-feature type="Processor" type-id="Class:874b9f152e0b445dbcfeee89df6a5ea4" />
- </item>
- <item id="002883f71fbc4324bbd1efa19cdbd1a6" cid="PROP003" type="property" owner="2037f7bd032e4fa3a1d8d99f1cd1ea27" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:43:08" visibility="private">
- <structural-feature type="Invoice" type-id="Class:cb92b4b50dc847aebfdbd90ce365a1eb" />
- </item>
- <item id="49ad3ceea0bb4157b557e21e2eb7c0b9" cid="PROP006" type="property" owner="802906c103994cfb8c5117077f30e22a" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:43:31" visibility="private">
- <structural-feature type="Base" type-id="Class:2626a7fd504946ccaa1eb090b6d27d0d" />
- </item>
- <item id="6d22af3498a54020b1085246698cc0a1" cid="PROP014" type="property" owner="26f7ba623f254dd28b60add6ba05099c" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:26:55" visibility="private">
- <structural-feature type="Processor" type-id="Class:874b9f152e0b445dbcfeee89df6a5ea4" />
- </item>
- <item id="973f3350bf004251bfd79b861f6bfe4f" cid="ELEM001" type="template-parameter" name="TRepository" owner="7399b648d3cb40019de69d5f8ea9f2b9" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:52:13">
- <style style-name="Custom Style" shadow-type="smooth" shadow-offset="2,2" shadow-visible="true" shadow-color="#3A555555" shadow-radius="8" wrap-name-text="true" wrap-other-text="true" padding="2" margin="1" glow-color="#FFFFFF" accuracy="0.9">
- <text-style type="name" color="#555555" font="Segoe UI;11.25;B" />
- <text-style type="part-header" color="#1E1E1E" font="Verdana;9;I" />
- <text-style type="text" color="#555555" font="Segoe UI;9.75;" horizontal-alignment="left" />
- <text-style type="tagged-value" color="#555555" font="Segoe UI;9.75;" />
- <text-style type="stereotype" color="#555555" font="Segoe UI;9;I" />
- <background type="solid" colors="#F2F2F2,#F2F2F2" />
- <border color="#555555" width="2" />
- <label-connector color="#80000000" dash-style="Dash" />
- <alternate-styles>
- <alternate-style style-name="Alternate" shadow-type="smooth" shadow-offset="2,2" shadow-visible="true" shadow-color="#322A2A2A" shadow-radius="8" wrap-name-text="true" wrap-other-text="true" padding="2" margin="1" glow-color="#FFFFFF" accuracy="0.9">
- <text-style type="name" color="#E9E9E9" font="Segoe UI;11.25;B" />
- <text-style type="part-header" color="#1E1E1E" font="Verdana;9;I" />
- <text-style type="text" color="#E9E9E9" font="Segoe UI;9.75;" horizontal-alignment="left" />
- <text-style type="tagged-value" color="#E9E9E9" font="Segoe UI;9.75;" />
- <text-style type="stereotype" color="#E9E9E9" font="Segoe UI;9;I" />
- <background type="solid" colors="#203D85,#203D85" />
- <border color="#203D85" width="2" />
- <label-connector color="#80000000" dash-style="Dash" />
- </alternate-style>
- </alternate-styles>
- </style>
- <template-parameter kind="" />
- </item>
- <item id="b531bae1520645b58761d8077cac7517" cid="PROP004" type="property" owner="2037f7bd032e4fa3a1d8d99f1cd1ea27" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:43:08" visibility="private">
- <structural-feature type="Base" type-id="Class:2626a7fd504946ccaa1eb090b6d27d0d" />
- </item>
- <item id="93016f98fae440bb88e27fe09172df66" cid="PROP001" type="property" owner="7268ad1b0bd249218475144e6941ccdf" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:42:51" visibility="private">
- <structural-feature type="Invoice" type-id="Class:cb92b4b50dc847aebfdbd90ce365a1eb" />
- </item>
- </items>
- <models>
- <model id="p90d2274b44184846a11deb852336b134_590513963" name="Concept" namespace="" order-index="1" expanded="true">
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>09/15/2022 15:37:52</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models>
- <model id="p542a3c57ccde4d58987138df66177da3_862826318" name="Modules" namespace="" order-index="3" expanded="true">
- <meta>
- <authors>
- <author>Dalibor Votruba</author>
- </authors>
- <description />
- <creation-date>11/08/2022 05:34:53</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models>
- <model id="pc1208df130fa44ef940a182832e978c6_300449290" name="Processor" namespace="" order-index="1" expanded="true">
- <meta>
- <authors>
- <author>Dalibor Votruba</author>
- </authors>
- <description />
- <creation-date>11/08/2022 05:35:09</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models />
- <diagram type="flowchart" id="p01035b1749cf48ae850765ccc074e1cd_975796256" name="QueueProcessFlow" order-index="1" uid="" name-style="" auto-routed-paths="false" default-line-style="default" view-location="-462,300" zoom="0.9432836">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author>Dalibor Votruba</author>
- </authors>
- <description />
- <creation-date>11/08/2022 05:35:52</creation-date>
- <change-date>11/08/2022 08:26:45</change-date>
- <revision-count>0</revision-count>
- <version>1.0.0.0</version>
- </meta>
- <abstract-items>
- <item id="dd466577b156451eb42656922ef465d2" cid="FCF022" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:09:02" from="2210bf4bcecb466c9048a1ebcee9986e" to="3b16a5ecb5e843ad8821df5d5b356def" />
- <item id="f28974847a6b43a18bdb7bca85f91f25" cid="FCDT001" type="flowchart-data" name="QueuePending (Pending)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:38:07" />
- <item id="3fe0cdae22ba4e8392ef24d7e62b82e4" cid="ELEM014" type="flowchart-transfer" name="Move to QueueProcessing" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:42:04" />
- <item id="78449336c87849d6bede5b22a70ea230" cid="FCF016" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:04:02" from="8b245a2974f743b3998d5d3d8064511b" to="c3dd066406424ec58846202c15b5802e">
- <stereotypes>
- <stereotype name="true" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="78449336c87849d6bede5b22a70ea230_true_c" type="true" ref="" />
- </stereotype-instances>
- </item>
- <item id="7da93049cc724cac917b22048bb10488" cid="ELEM025" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:10:34" from="c3dd066406424ec58846202c15b5802e" to="0a8d75b0225f48ce8873c83fedb3a566">
- <connector end-cap="arrow" />
- </item>
- <item id="a4f54b2c54e84fef976364f3dbfb4210" cid="FCDT006" type="flowchart-data" name="QueueProcessing (increment attempt)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 07:56:51" />
- <item id="7e8f23f6d3a0443aa03347ed6488c26b" cid="FCF023" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:18:38" from="289390e80cab44c4b29c98b705d51167" to="c8214de2d5ee41d4be8f2b58e6a2d9d8">
- <stereotypes>
- <stereotype name="false" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="7e8f23f6d3a0443aa03347ed6488c26b_false_c" type="false" ref="" />
- </stereotype-instances>
- </item>
- <item id="45a5b0fa454549aabcae684f446c1d5e" cid="ELEM018" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:48:59" from="e7a3da1f257b47209ff4d4d6233cb814" to="0a8d75b0225f48ce8873c83fedb3a566">
- <connector end-cap="arrow" />
- </item>
- <item id="0a8d75b0225f48ce8873c83fedb3a566" cid="FCPP001" type="flowchart-predefined-process" name="WriteToStatusHistory" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:47:55" />
- <item id="3478bb60839345968effb7d2b21824e1" cid="ELEM019" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:49:46" from="4b7e9545e0b34186b8110e228d20090c" to="3fe0cdae22ba4e8392ef24d7e62b82e4">
- <connector end-cap="arrow" />
- </item>
- <item id="b852179671164649bf433871094392f9" cid="FCF007" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:50:13" from="4b7e9545e0b34186b8110e228d20090c" to="e7a3da1f257b47209ff4d4d6233cb814" />
- <item id="289390e80cab44c4b29c98b705d51167" cid="FCDC004" type="flowchart-decision" name="Check if expired" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:18:09" />
- <item id="8b245a2974f743b3998d5d3d8064511b" cid="FCDC001" type="flowchart-decision" name="Task ends successfull" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:51:31" />
- <item id="e75baa3e64f747a591f1d4d6319a7c48" cid="FCF025" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:22:16" from="68b42662151342d89f24fcf1628e49a6" to="b7e7b4b9036f42768b84373fda61eee7" />
- <item id="dbe83edfd94347faa3189afa0f12d5f9" cid="FCF020" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:08:17" from="59c4c4fbe9ce476a986bdcbeb779cc75" to="2210bf4bcecb466c9048a1ebcee9986e" />
- <item id="64b625b7f65d4fdea8b55ae8f7d2da70" cid="FCF024" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:21:50" from="289390e80cab44c4b29c98b705d51167" to="68b42662151342d89f24fcf1628e49a6">
- <stereotypes>
- <stereotype name="true" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="64b625b7f65d4fdea8b55ae8f7d2da70_true_c" type="true" ref="" />
- </stereotype-instances>
- </item>
- <item id="7d8cf91331de4ac78243f85d98bac60c" cid="ELEM013" type="flowchart-start-end" name="Start" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:36:56" />
- <item id="7a25f63262994a4d93081c8cfa69c389" cid="FCDT004" type="flowchart-data" name="QueuePending (set affinity to worker)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:45:32" />
- <item id="68b42662151342d89f24fcf1628e49a6" cid="FCDT010" type="flowchart-data" name="QueuePending (Expired)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:19:09" />
- <item id="af4dfd8ccddb47bfba620c65a1d4e1b2" cid="FCDC003" type="flowchart-decision" name="attempt max count exceed" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:01:01" />
- <item id="aa60143bc9c0413aad4c55bcca89b2ea" cid="FCF015" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:02:02" from="5d9c2bc68ff249cdb75891c025eb8e8a" to="8b245a2974f743b3998d5d3d8064511b" />
- <item id="957ad59b2e744cdebd9317ebc81182be" cid="ELEM016" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:48:27" from="f28974847a6b43a18bdb7bca85f91f25" to="0a8d75b0225f48ce8873c83fedb3a566">
- <connector end-cap="arrow" />
- </item>
- <item id="db2c81d9b11d467494645052fa30e42c" cid="CMT001" type="comment" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:26:45">
- <comment>Statuses
- - Pending
- - Assigned
- - Working
- - Success
- - Failed
- - Expired
- </comment>
- </item>
- <item id="f6977b36be114cc0bdb54f411e6a7c42" cid="FCF014" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:01:55" from="af4dfd8ccddb47bfba620c65a1d4e1b2" to="5d9c2bc68ff249cdb75891c025eb8e8a">
- <stereotypes>
- <stereotype name="false" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="f6977b36be114cc0bdb54f411e6a7c42_false_c" type="false" ref="" />
- </stereotype-instances>
- </item>
- <item id="e7a3da1f257b47209ff4d4d6233cb814" cid="FCDT003" type="flowchart-data" name="QueueProcessing (Working)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:43:45" />
- <item id="8cd90bac9b51400eabe3ccf9158124b2" cid="FCDT008" type="flowchart-data" name="QueueProcessing (Failed)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:02:31" />
- <item id="b7e7b4b9036f42768b84373fda61eee7" cid="ELEM021" type="flowchart-transfer" name="Move to QueueFailed" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:04:58" />
- <item id="c83cb2481a1a456a921c0096e6e7f05f" cid="ELEM024" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:10:24" from="8cd90bac9b51400eabe3ccf9158124b2" to="0a8d75b0225f48ce8873c83fedb3a566">
- <connector end-cap="arrow" />
- </item>
- <item id="59c4c4fbe9ce476a986bdcbeb779cc75" cid="ELEM022" type="flowchart-transfer" name="Move to QueueDone" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:05:46" />
- <item id="ce1eebce4c2d4c618cd34d7ee6b5c884" cid="FCF002" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:41:10" from="c45a2b00a4534a4993d3d493d08ea362" to="f28974847a6b43a18bdb7bca85f91f25" />
- <item id="e1d037ea46c843a482d991d95f8d76f8" cid="FCF019" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:06:24" from="c3dd066406424ec58846202c15b5802e" to="59c4c4fbe9ce476a986bdcbeb779cc75" />
- <item id="f72aa32dc60248a7bb9dacc3e5e5e92d" cid="FCF011" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 07:57:36" from="e7a3da1f257b47209ff4d4d6233cb814" to="5d9c2bc68ff249cdb75891c025eb8e8a" />
- <item id="c9aeaf88d97b49c389d2eab5e6f941a7" cid="FCF021" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:08:23" from="b7e7b4b9036f42768b84373fda61eee7" to="2210bf4bcecb466c9048a1ebcee9986e" />
- <item id="9f89c39da61a4230991dcdeec3da8574" cid="FCF017" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:04:34" from="af4dfd8ccddb47bfba620c65a1d4e1b2" to="8cd90bac9b51400eabe3ccf9158124b2">
- <stereotypes>
- <stereotype name="true" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="9f89c39da61a4230991dcdeec3da8574_true_c" type="true" ref="" />
- </stereotype-instances>
- </item>
- <item id="0378ad126b2f450db622c055a6078672" cid="ELEM015" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:46:37" from="c8214de2d5ee41d4be8f2b58e6a2d9d8" to="7a25f63262994a4d93081c8cfa69c389">
- <connector end-cap="arrow" />
- </item>
- <item id="5d9c2bc68ff249cdb75891c025eb8e8a" cid="FCP005" type="flowchart-process" name="ProcessingTask" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 07:57:07" />
- <item id="4b7e9545e0b34186b8110e228d20090c" cid="FCDT002" type="flowchart-data" name="QueuePending (Assigned)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:42:37" />
- <item id="c3dd066406424ec58846202c15b5802e" cid="FCDT009" type="flowchart-data" name="QueueProcessing (Success)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:03:23" />
- <item id="25584f5ba79b406f9e5f2782aba3e826" cid="FCF004" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:46:49" from="c8214de2d5ee41d4be8f2b58e6a2d9d8" to="4b7e9545e0b34186b8110e228d20090c" />
- <item id="6a1f6f18671d4b32a901cebf7d2d2518" cid="ELEM017" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:48:36" from="4b7e9545e0b34186b8110e228d20090c" to="0a8d75b0225f48ce8873c83fedb3a566">
- <connector end-cap="arrow" />
- </item>
- <item id="3b16a5ecb5e843ad8821df5d5b356def" cid="ELEM023" type="flowchart-start-end" name="End" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:08:47" />
- <item id="2210bf4bcecb466c9048a1ebcee9986e" cid="ELEM012" type="flowchart-summing-junction" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:07:55" />
- <item id="c8214de2d5ee41d4be8f2b58e6a2d9d8" cid="FCP002" type="flowchart-process" name="AssignProcessing" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:40:37" />
- <item id="4d44a5d6c1134d97a781f2f807eb64dc" cid="ELEM020" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 07:59:42" from="5d9c2bc68ff249cdb75891c025eb8e8a" to="a4f54b2c54e84fef976364f3dbfb4210">
- <connector end-cap="arrow" />
- </item>
- <item id="0b6bd0bcca044fa58ebccb9d8a7454de" cid="FCF001" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:37:59" from="7d8cf91331de4ac78243f85d98bac60c" to="c45a2b00a4534a4993d3d493d08ea362" />
- <item id="c45a2b00a4534a4993d3d493d08ea362" cid="FCP001" type="flowchart-process" name="Create" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:37:22" />
- <item id="abac9c9e94da489ba43d2e97bd93ea4d" cid="FCF018" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:06:18" from="8cd90bac9b51400eabe3ccf9158124b2" to="b7e7b4b9036f42768b84373fda61eee7" />
- <item id="ebc5fe070a764339b4d0069e473b2d63" cid="FCF013" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:01:36" from="8b245a2974f743b3998d5d3d8064511b" to="af4dfd8ccddb47bfba620c65a1d4e1b2">
- <stereotypes>
- <stereotype name="false" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="ebc5fe070a764339b4d0069e473b2d63_false_c" type="false" ref="" />
- </stereotype-instances>
- </item>
- </abstract-items>
- <layer id="b5873808f2244247b4e2457577f30d25" name="Default" visible="true" enabled="true" locked="false">
- <item id="7d8cf91331de4ac78243f85d98bac60c" iid="ff5fd1ae94d140ce8b139e2f17caa9e9" creation-date="11/08/2022 05:36:56" order-index="0" type="entity">
- <layout ax="453.3688" ay="61.47083" awidth="150" aheight="60" x="450" y="55" width="150" height="60" />
- </item>
- <item id="c45a2b00a4534a4993d3d493d08ea362" iid="822f7dd12acb411789313a82757bfa04" creation-date="11/08/2022 05:37:22" order-index="1" type="entity">
- <layout ax="453.825" ay="166.7657" awidth="150" aheight="60" x="450" y="160" width="150" height="60" />
- </item>
- <item id="0b6bd0bcca044fa58ebccb9d8a7454de" iid="a861118daace463192ae8c24f1642d0c" creation-date="11/08/2022 05:37:59" order-index="2" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="528" y1="121" x2="529" y2="167" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="75" end-local-pos="75" name-position="0,20">
- <points>
- <point x="528" y="121" />
- <point x="529" y="167" />
- </points>
- </layout>
- <relation from="7d8cf91331de4ac78243f85d98bac60c" from-iid="ff5fd1ae94d140ce8b139e2f17caa9e9" to="c45a2b00a4534a4993d3d493d08ea362" to-iid="822f7dd12acb411789313a82757bfa04" />
- </item>
- <item id="f28974847a6b43a18bdb7bca85f91f25" iid="a4d3ebbf065c4f18bbad5165480b5a4d" creation-date="11/08/2022 05:38:07" order-index="3" type="entity">
- <layout ax="454.3679" ay="272.0625" awidth="150" aheight="60" x="450" y="265" width="150" height="60" />
- </item>
- <item id="c8214de2d5ee41d4be8f2b58e6a2d9d8" iid="737a5330317e4263921e89f793006b89" creation-date="11/08/2022 05:40:37" order-index="5" type="entity">
- <layout ax="457.0154" ay="694.3477" awidth="150" aheight="60" x="452" y="687" width="150" height="60" />
- </item>
- <item id="ce1eebce4c2d4c618cd34d7ee6b5c884" iid="d5cc0552a2e246d7aa11990a4de5cf91" creation-date="11/08/2022 05:41:10" order-index="6" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="529" y1="227" x2="529" y2="272" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="75" end-local-pos="75" name-position="0,20">
- <points>
- <point x="529" y="227" />
- <point x="529" y="272" />
- </points>
- </layout>
- <relation from="c45a2b00a4534a4993d3d493d08ea362" from-iid="822f7dd12acb411789313a82757bfa04" to="f28974847a6b43a18bdb7bca85f91f25" to-iid="a4d3ebbf065c4f18bbad5165480b5a4d" />
- </item>
- <item id="3fe0cdae22ba4e8392ef24d7e62b82e4" iid="366d090b01d54006a43d8515d0047e47" creation-date="11/08/2022 05:42:04" order-index="8" type="entity">
- <layout ax="769.3934" ay="867.7758" awidth="195" aheight="90" x="759.5" y="852" width="205" height="100" rotation-center="-47.5,0" />
- </item>
- <item id="4b7e9545e0b34186b8110e228d20090c" iid="73c55ab8875d4d35b38bc85135bfd114" creation-date="11/08/2022 05:42:37" order-index="9" type="entity">
- <layout ax="457.7886" ay="799.6015" awidth="150" aheight="60" x="452" y="792" width="150" height="60" />
- </item>
- <item id="e7a3da1f257b47209ff4d4d6233cb814" iid="57d5a47d69ea41d0bd77fac0f40c8310" creation-date="11/08/2022 05:43:45" order-index="10" type="entity">
- <layout ax="431.3507" ay="916.545" awidth="205" aheight="60" x="424.5" y="909" width="205" height="60" rotation-center="-27.5,0" />
- </item>
- <item id="7a25f63262994a4d93081c8cfa69c389" iid="ce70f6b6cfc94ffb990c524db0ea47ae" creation-date="11/08/2022 05:45:32" order-index="11" type="entity">
- <layout ax="760.4237" ay="664.1959" awidth="357" aheight="124" x="757" y="655" width="357" height="124" rotation-center="-103.5,-32" />
- </item>
- <item id="0378ad126b2f450db622c055a6078672" iid="dd433dcc9e194928947587aeb16d1e86" creation-date="11/08/2022 05:46:37" order-index="12" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="607" y1="724" x2="791" y2="726" start-border-pos="0.375" end-border-pos="0.875" start-local-pos="30" end-local-pos="62" name-position="0,20">
- <points>
- <point x="607" y="724" />
- <point x="791" y="726" />
- </points>
- </layout>
- <relation from="c8214de2d5ee41d4be8f2b58e6a2d9d8" from-iid="737a5330317e4263921e89f793006b89" to="7a25f63262994a4d93081c8cfa69c389" to-iid="ce70f6b6cfc94ffb990c524db0ea47ae" />
- </item>
- <item id="25584f5ba79b406f9e5f2782aba3e826" iid="373bcd5bec7141e99801d2b8abff71bc" creation-date="11/08/2022 05:46:49" order-index="13" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="532" y1="754" x2="533" y2="800" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="75" end-local-pos="75" name-position="0,20">
- <points>
- <point x="532" y="754" />
- <point x="533" y="800" />
- </points>
- </layout>
- <relation from="c8214de2d5ee41d4be8f2b58e6a2d9d8" from-iid="737a5330317e4263921e89f793006b89" to="4b7e9545e0b34186b8110e228d20090c" to-iid="73c55ab8875d4d35b38bc85135bfd114" />
- </item>
- <item id="0a8d75b0225f48ce8873c83fedb3a566" iid="b93f0ce5ff5e4bc48ac7135629f09399" creation-date="11/08/2022 05:47:55" order-index="16" type="entity">
- <layout ax="54.86707" ay="270.0109" awidth="276" aheight="60" x="50" y="265" width="276" height="60" rotation-center="-63,0" />
- </item>
- <item id="957ad59b2e744cdebd9317ebc81182be" iid="30cb3788a9814421884f6236cdc8e925" creation-date="11/08/2022 05:48:27" order-index="17" type="relation">
- <layout line-style="oblique" lock-end-point="true" lock-to-fields="false" auto-path="" x1="470" y1="301" x2="331" y2="300" start-border-pos="0.878416951497396" end-border-pos="0.375" end-local-pos="30" name-position="0,20">
- <points>
- <point x="470" y="301" />
- <point x="331" y="300" />
- </points>
- </layout>
- <relation from="f28974847a6b43a18bdb7bca85f91f25" from-iid="a4d3ebbf065c4f18bbad5165480b5a4d" to="0a8d75b0225f48ce8873c83fedb3a566" to-iid="b93f0ce5ff5e4bc48ac7135629f09399" />
- </item>
- <item id="6a1f6f18671d4b32a901cebf7d2d2518" iid="579ccd3e0a3f4f269f59ed9d7df1c457" creation-date="11/08/2022 05:48:36" order-index="18" type="relation">
- <layout line-style="straight" end-auto-side="false" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="473" y1="830" x2="331" y2="300" start-border-pos="0.875" end-border-pos="0.375" start-local-pos="30" end-local-pos="30" name-position="0,20">
- <points>
- <point x="473" y="830" />
- <point x="331" y="300" />
- </points>
- </layout>
- <relation from="4b7e9545e0b34186b8110e228d20090c" from-iid="73c55ab8875d4d35b38bc85135bfd114" to="0a8d75b0225f48ce8873c83fedb3a566" to-iid="b93f0ce5ff5e4bc48ac7135629f09399" />
- </item>
- <item id="45a5b0fa454549aabcae684f446c1d5e" iid="225562176ff543d2890e26c3895793b0" creation-date="11/08/2022 05:48:59" order-index="19" type="relation">
- <layout line-style="straight" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="446" y1="947" x2="193" y2="330" start-border-pos="0.875" end-border-pos="0.625" start-local-pos="30" end-local-pos="138" name-position="0,20">
- <points>
- <point x="446" y="947" />
- <point x="193" y="330" />
- </points>
- </layout>
- <relation from="e7a3da1f257b47209ff4d4d6233cb814" from-iid="57d5a47d69ea41d0bd77fac0f40c8310" to="0a8d75b0225f48ce8873c83fedb3a566" to-iid="b93f0ce5ff5e4bc48ac7135629f09399" />
- </item>
- <item id="3478bb60839345968effb7d2b21824e1" iid="2f81f4c777ce477ab2454e9d90cb99d2" creation-date="11/08/2022 05:49:46" order-index="20" type="relation">
- <layout line-style="straight" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="593" y1="830" x2="769" y2="913" start-border-pos="0.375" end-border-pos="0.875" start-local-pos="30" end-local-pos="50" name-position="0,20">
- <points>
- <point x="593" y="830" />
- <point x="769" y="913" />
- </points>
- </layout>
- <relation from="4b7e9545e0b34186b8110e228d20090c" from-iid="73c55ab8875d4d35b38bc85135bfd114" to="3fe0cdae22ba4e8392ef24d7e62b82e4" to-iid="366d090b01d54006a43d8515d0047e47" />
- </item>
- <item id="b852179671164649bf433871094392f9" iid="de7f8337f869416da91b39be7b23f5db" creation-date="11/08/2022 05:50:13" order-index="21" type="relation">
- <layout line-style="straight" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="533" y1="860" x2="534" y2="917" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="75" end-local-pos="102.5" name-position="0,20">
- <points>
- <point x="533" y="860" />
- <point x="534" y="917" />
- </points>
- </layout>
- <relation from="4b7e9545e0b34186b8110e228d20090c" from-iid="73c55ab8875d4d35b38bc85135bfd114" to="e7a3da1f257b47209ff4d4d6233cb814" to-iid="57d5a47d69ea41d0bd77fac0f40c8310" />
- </item>
- <item id="8b245a2974f743b3998d5d3d8064511b" iid="612e3600a9164ea4b1c18e433e474dcf" creation-date="11/08/2022 05:51:31" order-index="22" type="entity">
- <layout ax="442.0939" ay="1200.236" awidth="190" aheight="100" x="432" y="1193" width="190" height="100" rotation-center="-40,0" />
- </item>
- <item id="a4f54b2c54e84fef976364f3dbfb4210" iid="82847bd07d174a0780ba1fd7d61ed87f" creation-date="11/08/2022 07:56:51" order-index="26" type="entity">
- <layout ax="769.3649" ay="1058.43" awidth="200" aheight="50" x="757" y="1041" width="200" height="60" rotation-center="-30,0" />
- </item>
- <item id="5d9c2bc68ff249cdb75891c025eb8e8a" iid="8cc1b40414694627a8756c37e2f8dfc3" creation-date="11/08/2022 07:57:07" order-index="27" type="entity">
- <layout ax="474.2482" ay="1049.028" awidth="122" aheight="60" x="466" y="1041" width="122" height="60" />
- </item>
- <item id="f72aa32dc60248a7bb9dacc3e5e5e92d" iid="6ca04f8b9725455985260167b7fce088" creation-date="11/08/2022 07:57:36" order-index="28" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="534" y1="977" x2="535" y2="1049" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="102.5" end-local-pos="61" name-position="0,20">
- <points>
- <point x="534" y="977" />
- <point x="535" y="1049" />
- </points>
- </layout>
- <relation from="e7a3da1f257b47209ff4d4d6233cb814" from-iid="57d5a47d69ea41d0bd77fac0f40c8310" to="5d9c2bc68ff249cdb75891c025eb8e8a" to-iid="8cc1b40414694627a8756c37e2f8dfc3" />
- </item>
- <item id="4d44a5d6c1134d97a781f2f807eb64dc" iid="c68a6d73f184485ab8541072f28522fe" creation-date="11/08/2022 07:59:42" order-index="29" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="596" y1="1079" x2="782" y2="1083" start-border-pos="0.375" end-border-pos="0.875" start-local-pos="30" end-local-pos="25" name-position="0,20">
- <points>
- <point x="596" y="1079" />
- <point x="782" y="1083" />
- </points>
- </layout>
- <relation from="5d9c2bc68ff249cdb75891c025eb8e8a" from-iid="8cc1b40414694627a8756c37e2f8dfc3" to="a4f54b2c54e84fef976364f3dbfb4210" to-iid="82847bd07d174a0780ba1fd7d61ed87f" />
- </item>
- <item id="af4dfd8ccddb47bfba620c65a1d4e1b2" iid="5611f42474db43a2b68ecba4cd4e91e7" creation-date="11/08/2022 08:01:01" order-index="30" type="entity">
- <layout ax="159.6605" ay="1197.5" awidth="205" aheight="100" x="151" y="1193" width="205" height="100" rotation-center="-47.5,0" />
- </item>
- <item id="ebc5fe070a764339b4d0069e473b2d63" iid="4b52c894dd954407bc4990a82f0f13fe" creation-date="11/08/2022 08:01:36" order-index="31" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="441" y1="1250" x2="365" y2="1248" start-border-pos="0.875" end-border-pos="0.375" start-local-pos="50" end-local-pos="50" name-position="0,20">
- <points>
- <point x="441" y="1250" />
- <point x="365" y="1248" />
- </points>
- </layout>
- <relation from="8b245a2974f743b3998d5d3d8064511b" from-iid="612e3600a9164ea4b1c18e433e474dcf" to="af4dfd8ccddb47bfba620c65a1d4e1b2" to-iid="5611f42474db43a2b68ecba4cd4e91e7" />
- </item>
- <item id="f6977b36be114cc0bdb54f411e6a7c42" iid="d90e6e52a3864bc08c73351cc66d7556" creation-date="11/08/2022 08:01:55" order-index="32" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="262" y1="1197" x2="474" y2="1079" start-border-pos="0.124390243902439" end-border-pos="0.875" start-local-pos="102" end-local-pos="30" name-position="0,20">
- <points>
- <point x="262" y="1197" />
- <point x="474" y="1079" />
- </points>
- </layout>
- <relation from="af4dfd8ccddb47bfba620c65a1d4e1b2" from-iid="5611f42474db43a2b68ecba4cd4e91e7" to="5d9c2bc68ff249cdb75891c025eb8e8a" to-iid="8cc1b40414694627a8756c37e2f8dfc3" />
- </item>
- <item id="aa60143bc9c0413aad4c55bcca89b2ea" iid="d6a27f63a3834c39b0404f9d5a956115" creation-date="11/08/2022 08:02:02" order-index="33" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="535" y1="1109" x2="537" y2="1200" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="61" end-local-pos="95" name-position="0,20">
- <points>
- <point x="535" y="1109" />
- <point x="537" y="1200" />
- </points>
- </layout>
- <relation from="5d9c2bc68ff249cdb75891c025eb8e8a" from-iid="8cc1b40414694627a8756c37e2f8dfc3" to="8b245a2974f743b3998d5d3d8064511b" to-iid="612e3600a9164ea4b1c18e433e474dcf" />
- </item>
- <item id="8cd90bac9b51400eabe3ccf9158124b2" iid="371cdc57662a416c9f17b62e1b512d73" creation-date="11/08/2022 08:02:31" order-index="34" type="entity">
- <layout ax="146.8221" ay="1391.164" awidth="233" aheight="60" x="137" y="1388" width="233" height="60" rotation-center="41.5,0" />
- </item>
- <item id="c3dd066406424ec58846202c15b5802e" iid="8f6a01d921f74c579552403c0bc30dcf" creation-date="11/08/2022 08:03:23" order-index="35" type="entity">
- <layout ax="410.6182" ay="1377.463" awidth="257" aheight="76" x="398.5" y="1372" width="257" height="76" rotation-center="19,0" />
- </item>
- <item id="78449336c87849d6bede5b22a70ea230" iid="bedcf5179dbe47ca84f4e0410307c2a1" creation-date="11/08/2022 08:04:02" order-index="36" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="537" y1="1300" x2="539" y2="1377" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="95" end-local-pos="128.5" name-position="0,20">
- <points>
- <point x="537" y="1300" />
- <point x="539" y="1377" />
- </points>
- </layout>
- <relation from="8b245a2974f743b3998d5d3d8064511b" from-iid="612e3600a9164ea4b1c18e433e474dcf" to="c3dd066406424ec58846202c15b5802e" to-iid="8f6a01d921f74c579552403c0bc30dcf" />
- </item>
- <item id="9f89c39da61a4230991dcdeec3da8574" iid="c12804cc57424f77a281415273d9ebeb" creation-date="11/08/2022 08:04:34" order-index="37" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="263" y1="1297" x2="264" y2="1391" start-border-pos="0.624390243902439" end-border-pos="0.125536480686695" start-local-pos="103" end-local-pos="117" name-position="0,20">
- <points>
- <point x="263" y="1297" />
- <point x="264" y="1391" />
- </points>
- </layout>
- <relation from="af4dfd8ccddb47bfba620c65a1d4e1b2" from-iid="5611f42474db43a2b68ecba4cd4e91e7" to="8cd90bac9b51400eabe3ccf9158124b2" to-iid="371cdc57662a416c9f17b62e1b512d73" />
- </item>
- <item id="b7e7b4b9036f42768b84373fda61eee7" iid="80e05d24ec1a4f729acbd27890d42571" creation-date="11/08/2022 08:04:58" order-index="38" type="entity">
- <layout ax="181.2725" ay="1521.661" awidth="166" aheight="76" x="170.5" y="1519.5" width="166" height="76" />
- </item>
- <item id="59c4c4fbe9ce476a986bdcbeb779cc75" iid="9d40d17d1372408a8792360f6ea592d2" creation-date="11/08/2022 08:05:46" order-index="39" type="entity">
- <layout ax="438.6021" ay="1526.716" awidth="205" aheight="69" x="424.5" y="1523" width="205" height="69" rotation-center="0,-3.5" />
- </item>
- <item id="abac9c9e94da489ba43d2e97bd93ea4d" iid="fc9ffaa1fd224426bb4aafaae5ad2359" creation-date="11/08/2022 08:06:18" order-index="40" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="264" y1="1451" x2="265" y2="1522" start-border-pos="0.624463519313305" end-border-pos="0.125753012048193" start-local-pos="117" end-local-pos="83.5" name-position="0,20">
- <points>
- <point x="264" y="1451" />
- <point x="265" y="1522" />
- </points>
- </layout>
- <relation from="8cd90bac9b51400eabe3ccf9158124b2" from-iid="371cdc57662a416c9f17b62e1b512d73" to="b7e7b4b9036f42768b84373fda61eee7" to-iid="80e05d24ec1a4f729acbd27890d42571" />
- </item>
- <item id="e1d037ea46c843a482d991d95f8d76f8" iid="d0eeec52470e4e5186d0b1a42f2b0f34" creation-date="11/08/2022 08:06:24" order-index="41" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="539" y1="1453" x2="541" y2="1527" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="128.5" end-local-pos="102.5" name-position="0,20">
- <points>
- <point x="539" y="1453" />
- <point x="541" y="1527" />
- </points>
- </layout>
- <relation from="c3dd066406424ec58846202c15b5802e" from-iid="8f6a01d921f74c579552403c0bc30dcf" to="59c4c4fbe9ce476a986bdcbeb779cc75" to-iid="9d40d17d1372408a8792360f6ea592d2" />
- </item>
- <item id="2210bf4bcecb466c9048a1ebcee9986e" iid="578f57dd4255490584de048bfd9870a8" creation-date="11/08/2022 08:07:55" order-index="42" type="entity">
- <layout name-position="0,10" name-anchor="bottom" auto-anchor="true" label-attached="false" ax="518.8128" ay="1691.758" awidth="50" aheight="50" x="502" y="1691" width="53" height="50" />
- </item>
- <item id="dbe83edfd94347faa3189afa0f12d5f9" iid="b5e24ffa06a14eb893e20c745bbe2e8a" creation-date="11/08/2022 08:08:17" order-index="43" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="541" y1="1596" x2="544" y2="1691" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="102.5" end-local-pos="25" name-position="0,20">
- <points>
- <point x="541" y="1596" />
- <point x="544" y="1691" />
- </points>
- </layout>
- <relation from="59c4c4fbe9ce476a986bdcbeb779cc75" from-iid="9d40d17d1372408a8792360f6ea592d2" to="2210bf4bcecb466c9048a1ebcee9986e" to-iid="578f57dd4255490584de048bfd9870a8" />
- </item>
- <item id="c9aeaf88d97b49c389d2eab5e6f941a7" iid="e4d3f945344645afa0e1eaeef3169680" creation-date="11/08/2022 08:08:23" order-index="44" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="265" y1="1598" x2="544" y2="1691" start-border-pos="0.624246987951807" end-border-pos="0.125" start-local-pos="83.5" end-local-pos="25" name-position="0,20">
- <points>
- <point x="265" y="1598" />
- <point x="544" y="1691" />
- </points>
- </layout>
- <relation from="b7e7b4b9036f42768b84373fda61eee7" from-iid="80e05d24ec1a4f729acbd27890d42571" to="2210bf4bcecb466c9048a1ebcee9986e" to-iid="578f57dd4255490584de048bfd9870a8" />
- </item>
- <item id="3b16a5ecb5e843ad8821df5d5b356def" iid="9f7fc4e974ae443797a4d9f96e6bd2fa" creation-date="11/08/2022 08:08:47" order-index="45" type="entity">
- <layout ax="467.4355" ay="1808.097" awidth="150" aheight="60" x="452" y="1810" width="150" height="60" />
- </item>
- <item id="dd466577b156451eb42656922ef465d2" iid="3d47b8c7d86c459eaf0b8bf31595b7ca" creation-date="11/08/2022 08:09:02" order-index="46" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="544" y1="1741" x2="542" y2="1808" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="25" end-local-pos="75" name-position="0,20">
- <points>
- <point x="544" y="1741" />
- <point x="542" y="1808" />
- </points>
- </layout>
- <relation from="2210bf4bcecb466c9048a1ebcee9986e" from-iid="578f57dd4255490584de048bfd9870a8" to="3b16a5ecb5e843ad8821df5d5b356def" to-iid="9f7fc4e974ae443797a4d9f96e6bd2fa" />
- </item>
- <item id="c83cb2481a1a456a921c0096e6e7f05f" iid="3e045150894c404c866aace0a1c630c8" creation-date="11/08/2022 08:10:24" order-index="47" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="162" y1="1421" x2="193" y2="330" start-border-pos="0.875" end-border-pos="0.625" start-local-pos="30" end-local-pos="138" name-position="0,20">
- <points>
- <point x="162" y="1421" />
- <point x="2" y="1030" />
- <point x="193" y="330" />
- </points>
- </layout>
- <relation from="8cd90bac9b51400eabe3ccf9158124b2" from-iid="371cdc57662a416c9f17b62e1b512d73" to="0a8d75b0225f48ce8873c83fedb3a566" to-iid="b93f0ce5ff5e4bc48ac7135629f09399" />
- </item>
- <item id="7da93049cc724cac917b22048bb10488" iid="b927d644787e40bda99e67a49f412939" creation-date="11/08/2022 08:10:34" order-index="48" type="relation">
- <layout line-style="oblique" start-auto-side="false" lock-end-point="true" lock-to-fields="false" auto-path="" x1="449" y1="1377" x2="193" y2="330" start-border-pos="0.00322076226022921" end-border-pos="0.625" start-local-pos="46" end-local-pos="138" name-position="0,20">
- <points>
- <point x="449" y="1377" />
- <point x="121" y="1287.5" />
- <point x="193" y="330" />
- </points>
- </layout>
- <relation from="c3dd066406424ec58846202c15b5802e" from-iid="8f6a01d921f74c579552403c0bc30dcf" to="0a8d75b0225f48ce8873c83fedb3a566" to-iid="b93f0ce5ff5e4bc48ac7135629f09399" />
- </item>
- <item id="289390e80cab44c4b29c98b705d51167" iid="2f96e0027e7c4590be292c51cb84fba9" creation-date="11/08/2022 08:18:09" order-index="49" type="entity">
- <layout ax="453.3218" ay="434" awidth="150.0939" aheight="111" x="453.3218" y="434" width="150.0939" height="111" />
- </item>
- <item id="7e8f23f6d3a0443aa03347ed6488c26b" iid="90c28fc79ee14c4681b39e4d47d5c8bb" creation-date="11/08/2022 08:18:38" order-index="50" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="528" y1="544" x2="532" y2="694" start-border-pos="0.625614239623803" end-border-pos="0.124974365234375" start-local-pos="74.67816" end-local-pos="74.98462" name-position="0,20">
- <points>
- <point x="528" y="544" />
- <point x="532" y="694" />
- </points>
- </layout>
- <relation from="289390e80cab44c4b29c98b705d51167" from-iid="2f96e0027e7c4590be292c51cb84fba9" to="c8214de2d5ee41d4be8f2b58e6a2d9d8" to-iid="737a5330317e4263921e89f793006b89" />
- </item>
- <item id="68b42662151342d89f24fcf1628e49a6" iid="78ceeae81d854c5e8b4cfc1197d16aa4" creation-date="11/08/2022 08:19:09" order-index="51" type="entity">
- <layout ax="-182" ay="451.5" awidth="276" aheight="76" x="-182" y="451.5" width="276" height="76" rotation-center="0,15.5" />
- </item>
- <item id="64b625b7f65d4fdea8b55ae8f7d2da70" iid="6613726b41cf4b1494b922b060df5d7e" creation-date="11/08/2022 08:21:50" order-index="52" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="456" y1="492" x2="75" y2="490" start-border-pos="0.869369369369369" end-border-pos="0.376644736842105" start-local-pos="58" end-local-pos="38.5" name-position="0,20">
- <points>
- <point x="456" y="492" />
- <point x="75" y="490" />
- </points>
- </layout>
- <relation from="289390e80cab44c4b29c98b705d51167" from-iid="2f96e0027e7c4590be292c51cb84fba9" to="68b42662151342d89f24fcf1628e49a6" to-iid="78ceeae81d854c5e8b4cfc1197d16aa4" />
- </item>
- <item id="e75baa3e64f747a591f1d4d6319a7c48" iid="3799260a5ba24b27ab5ab2d5a678ec94" creation-date="11/08/2022 08:22:16" order-index="53" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="-44" y1="528" x2="264" y2="1522" start-border-pos="0.625" end-border-pos="0.124589667262801" start-local-pos="138" end-local-pos="82.72754" name-position="0,20">
- <points>
- <point x="-44" y="528" />
- <point x="-199" y="1427" />
- <point x="264" y="1522" />
- </points>
- </layout>
- <relation from="68b42662151342d89f24fcf1628e49a6" from-iid="78ceeae81d854c5e8b4cfc1197d16aa4" to="b7e7b4b9036f42768b84373fda61eee7" to-iid="80e05d24ec1a4f729acbd27890d42571" />
- </item>
- <item id="db2c81d9b11d467494645052fa30e42c" iid="8ee5b7b549754e4aaf38543f10c304ef" creation-date="11/08/2022 08:26:45" order-index="54" type="entity">
- <layout ax="-382" ay="226.7657" awidth="140" aheight="127" x="-382" y="226.7657" width="140" height="100" />
- </item>
- </layer>
- </diagram>
- </model>
- </sub-models>
- </model>
- </sub-models>
- <diagram type="uml-component" id="pc5adf2469318408aa71655238685ea62_667242607" name="Architecture - Modules" order-index="1" expanded="true" uid="" name-style="" auto-routed-paths="false" default-line-style="default" show-frame="false" view-location="145,266">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author />
- </authors>
- <description>Shows module associations and descripe their functionality (role)</description>
- <creation-date>09/15/2022 15:38:28</creation-date>
- <change-date>11/09/2022 16:26:55</change-date>
- <revision-count>0</revision-count>
- <version>0.0.2</version>
- </meta>
- <abstract-items>
- <item id="cc2cc1a81f0b46d9990261d829151310" cid="REL015" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:06:13" from="874b9f152e0b445dbcfeee89df6a5ea4" to="2626a7fd504946ccaa1eb090b6d27d0d" visibility="package">
- <stereotypes>
- <stereotype name="use" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="cc2cc1a81f0b46d9990261d829151310_use_c" type="use" ref="" />
- </stereotype-instances>
- <owned-items />
- <relation from="874b9f152e0b445dbcfeee89df6a5ea4" to="2626a7fd504946ccaa1eb090b6d27d0d" derived="false">
- <start-role id="umlar-b8afc572-a47d-4182-ac52-8b91593b4514" name="" navigability="" association-type="association" visibility="private" property-ref="7e127fd6ffb44997a6ed00e09680e29c" />
- <end-role id="umlar-c52d6c5d-9db7-434e-8ecc-584379b01af2" name="" navigability="yes" association-type="association" visibility="private" property-ref="3ea00702610044d585111749ee746ce0" />
- </relation>
- </item>
- <item id="874b9f152e0b445dbcfeee89df6a5ea4" cid="CPT004" type="component" name="Processor" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:03:49" visibility="undefined">
- <stereotypes>
- <stereotype name="component" />
- <stereotype name="module" />
- </stereotypes>
- <documentations>
- <doc id="0b4bc4e4d11b4c6fb34ec38ce139c424">
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Module </t>
- </p>
- <p>
- <t>provide </t>
- </p>
- <p>
- <t>worker </t>
- </p>
- <p>
- <t>queue </t>
- </p>
- <p>
- <t>to </t>
- </p>
- <p>
- <t>process </t>
- </p>
- <p>
- <t>oneway </t>
- </p>
- <p>
- <t>or </t>
- </p>
- <p>
- <t>repeatable </t>
- </p>
- <p>
- <t>tasks
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </doc>
- </documentations>
- <stereotype-instances>
- <stereotype id="874b9f152e0b445dbcfeee89df6a5ea4_component_c" type="component" ref="" />
- <stereotype id="874b9f152e0b445dbcfeee89df6a5ea4_module_c" type="module" ref="" />
- </stereotype-instances>
- <component />
- </item>
- <item id="802906c103994cfb8c5117077f30e22a" cid="REL003" type="relationship" change-tracking-state="added" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:43:31" from="7546dafc2b0d406bb9cf489c5eeb4aff" to="2626a7fd504946ccaa1eb090b6d27d0d" visibility="package">
- <stereotypes>
- <stereotype name="use" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="802906c103994cfb8c5117077f30e22a_use_c" type="use" ref="" />
- </stereotype-instances>
- <owned-items />
- <relation from="7546dafc2b0d406bb9cf489c5eeb4aff" to="2626a7fd504946ccaa1eb090b6d27d0d" derived="false">
- <start-role id="umlar-e2eb9e22-bb15-43b9-a2f3-d02e323b98e5" name="" navigability="" association-type="association" visibility="private" property-ref="de0957d8d7ac42eab57e579c2cefbf47" />
- <end-role id="umlar-eb41fac4-842a-4844-85f1-ece588b7673f" name="" navigability="yes" association-type="association" visibility="private" property-ref="49ad3ceea0bb4157b557e21e2eb7c0b9" />
- </relation>
- </item>
- <item id="26f7ba623f254dd28b60add6ba05099c" cid="REL018" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:26:55" from="84ab40101b0b4e5caa621287dc10fd91" to="874b9f152e0b445dbcfeee89df6a5ea4" visibility="package">
- <stereotypes>
- <stereotype name="use" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="26f7ba623f254dd28b60add6ba05099c_use_c" type="use" ref="" />
- </stereotype-instances>
- <owned-items />
- <relation from="84ab40101b0b4e5caa621287dc10fd91" to="874b9f152e0b445dbcfeee89df6a5ea4" derived="false">
- <start-role id="umlar-6f8a4b6d-1d34-4af1-bcff-4b8d92164a67" name="" navigability="" association-type="association" visibility="private" property-ref="4c0b5740d5454593b2f30e99077948f6" />
- <end-role id="umlar-97418e7e-69a3-4485-b954-7c4c2893b95d" name="" navigability="yes" association-type="association" visibility="private" property-ref="6d22af3498a54020b1085246698cc0a1" />
- </relation>
- </item>
- <item id="84ab40101b0b4e5caa621287dc10fd91" cid="CPT005" type="component" name="Notification" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:09:07" visibility="undefined">
- <stereotypes>
- <stereotype name="component" />
- <stereotype name="module" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="84ab40101b0b4e5caa621287dc10fd91_component_c" type="component" ref="" />
- <stereotype id="84ab40101b0b4e5caa621287dc10fd91_module_c" type="module" ref="" />
- </stereotype-instances>
- <component />
- </item>
- <item id="2626a7fd504946ccaa1eb090b6d27d0d" cid="CPT001" type="component" name="Base" change-tracking-state="added" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:39:10" visibility="undefined">
- <stereotypes>
- <stereotype name="component" />
- <stereotype name="module" />
- </stereotypes>
- <documentations>
- <doc id="2777eb2fa3ca41168e11650499b7bce5">
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Provide </t>
- </p>
- <p>
- <t>general </t>
- </p>
- <p>
- <t>functionalities </t>
- </p>
- <p>
- <t>shared </t>
- </p>
- <p>
- <t>across </t>
- </p>
- <p>
- <t>whole </t>
- </p>
- <p>
- <t>application.
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </doc>
- </documentations>
- <stereotype-instances>
- <stereotype id="2626a7fd504946ccaa1eb090b6d27d0d_component_c" type="component" ref="" />
- <stereotype id="2626a7fd504946ccaa1eb090b6d27d0d_module_c" type="module" ref="" />
- </stereotype-instances>
- <component />
- </item>
- <item id="aca6de65170946639e84b6ea7b12bf9e" cid="DEP001" type="dependency" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:06:50" from="874b9f152e0b445dbcfeee89df6a5ea4" to="7546dafc2b0d406bb9cf489c5eeb4aff" visibility="package">
- <stereotypes>
- <stereotype name="use" />
- <stereotype name="Optional" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="aca6de65170946639e84b6ea7b12bf9e_use_c" type="use" ref="" />
- <stereotype id="aca6de65170946639e84b6ea7b12bf9e_optional_c" type="Optional" />
- </stereotype-instances>
- </item>
- <item id="cb92b4b50dc847aebfdbd90ce365a1eb" cid="CPT003" type="component" name="Invoice" change-tracking-state="added" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:40:58" visibility="undefined">
- <stereotypes>
- <stereotype name="component" />
- <stereotype name="module" />
- </stereotypes>
- <documentations>
- <doc id="592a16c499e3482ea6729697c2c8d3af">
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Provides </t>
- </p>
- <p>
- <t>invoicing </t>
- </p>
- <p>
- <t>and </t>
- </p>
- <p>
- <t>payments </t>
- </p>
- <p>
- <t>functionality
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </doc>
- </documentations>
- <stereotype-instances>
- <stereotype id="cb92b4b50dc847aebfdbd90ce365a1eb_component_c" type="component" ref="" />
- <stereotype id="cb92b4b50dc847aebfdbd90ce365a1eb_module_c" type="module" ref="" />
- </stereotype-instances>
- <component />
- </item>
- <item id="7268ad1b0bd249218475144e6941ccdf" cid="REL001" type="relationship" change-tracking-state="added" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:42:51" from="cb92b4b50dc847aebfdbd90ce365a1eb" to="7546dafc2b0d406bb9cf489c5eeb4aff" visibility="package">
- <stereotypes>
- <stereotype name="use" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="7268ad1b0bd249218475144e6941ccdf_use_c" type="use" ref="" />
- </stereotype-instances>
- <owned-items />
- <relation from="cb92b4b50dc847aebfdbd90ce365a1eb" to="7546dafc2b0d406bb9cf489c5eeb4aff" derived="false">
- <start-role id="umlar-86c34510-4acf-4b8b-bf1d-9b0aceaea4d8" name="" navigability="" association-type="association" visibility="private" property-ref="93016f98fae440bb88e27fe09172df66" />
- <end-role id="umlar-9903715c-8bc3-4609-a03c-74d00b52fdd7" name="" navigability="yes" association-type="association" visibility="private" property-ref="132ce45236e54d6da05ae53d64712729" />
- </relation>
- </item>
- <item id="7546dafc2b0d406bb9cf489c5eeb4aff" cid="CPT002" type="component" name="Customer" change-tracking-state="added" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:40:04" visibility="undefined">
- <stereotypes>
- <stereotype name="component" />
- <stereotype name="module" />
- </stereotypes>
- <documentations>
- <doc id="2f25c883ee2a4f96868943171354c7f7">
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Provides </t>
- </p>
- <p>
- <t>customer </t>
- </p>
- <p>
- <t>oriented </t>
- </p>
- <p>
- <t>functionality, </t>
- </p>
- <p>
- <t>address/contact</t>
- </p>
- <p>
- <t> </t>
- </p>
- <p>
- <t>management</t>
- </p>
- <p>
- <t>
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </doc>
- </documentations>
- <stereotype-instances>
- <stereotype id="7546dafc2b0d406bb9cf489c5eeb4aff_component_c" type="component" ref="" />
- <stereotype id="7546dafc2b0d406bb9cf489c5eeb4aff_module_c" type="module" ref="" />
- </stereotype-instances>
- <component />
- </item>
- <item id="2037f7bd032e4fa3a1d8d99f1cd1ea27" cid="REL002" type="relationship" change-tracking-state="added" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:43:08" from="cb92b4b50dc847aebfdbd90ce365a1eb" to="2626a7fd504946ccaa1eb090b6d27d0d" visibility="package">
- <stereotypes>
- <stereotype name="use" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="2037f7bd032e4fa3a1d8d99f1cd1ea27_use_c" type="use" ref="" />
- </stereotype-instances>
- <owned-items />
- <relation from="cb92b4b50dc847aebfdbd90ce365a1eb" to="2626a7fd504946ccaa1eb090b6d27d0d" derived="false">
- <start-role id="umlar-4a8b65c6-e903-479f-ba6b-fecefb2c0d91" name="" navigability="" association-type="association" visibility="private" property-ref="002883f71fbc4324bbd1efa19cdbd1a6" />
- <end-role id="umlar-045508d3-92f9-46f6-b571-e06ad94bd34c" name="" navigability="yes" association-type="association" visibility="private" property-ref="b531bae1520645b58761d8077cac7517" />
- </relation>
- </item>
- </abstract-items>
- <layer id="4652a1f25651443e81c94ca76e3351d7" name="Default" visible="true" enabled="true" locked="false">
- <item id="2626a7fd504946ccaa1eb090b6d27d0d" iid="2d9f12d0b5c747d680e5b9a634abc525" show-fields="false" creation-date="09/15/2022 15:39:10" order-index="0" type="entity">
- <layout ax="839" ay="263" awidth="140" aheight="160" x="839" y="263" width="140" height="160" expanded="839,263,140,160" collapsed="0,0,0,0" />
- </item>
- <item id="7546dafc2b0d406bb9cf489c5eeb4aff" iid="c0a6c5ce0e1b45008fd2ef6d6c8d1a8c" show-fields="false" creation-date="09/15/2022 15:40:04" order-index="1" type="entity">
- <layout ax="621" ay="487" awidth="140" aheight="160" x="621" y="487" width="140" height="160" expanded="621,487,140,160" collapsed="0,0,0,0" />
- </item>
- <item id="cb92b4b50dc847aebfdbd90ce365a1eb" iid="42fbe04b406d43938c426dd5a934f4e6" show-fields="false" creation-date="09/15/2022 15:40:58" order-index="2" type="entity">
- <layout ax="1096" ay="482" awidth="150" aheight="170" x="1101" y="487" width="140" height="160" expanded="1096,482,150,170" collapsed="0,0,0,0" />
- </item>
- <item id="7268ad1b0bd249218475144e6941ccdf" iid="508755fa1a0e4a7fb2dfba7f62070f8f" creation-date="09/15/2022 15:42:51" order-index="3" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="1096" y1="564" x2="761" y2="567" start-border-pos="0.879411764705882" end-border-pos="0.375" start-local-pos="82" end-local-pos="80" name-position="0,20">
- <points>
- <point x="1096" y="564" />
- <point x="761" y="567" />
- </points>
- </layout>
- <relation from="cb92b4b50dc847aebfdbd90ce365a1eb" from-iid="42fbe04b406d43938c426dd5a934f4e6" to="7546dafc2b0d406bb9cf489c5eeb4aff" to-iid="c0a6c5ce0e1b45008fd2ef6d6c8d1a8c" />
- </item>
- <item id="2037f7bd032e4fa3a1d8d99f1cd1ea27" iid="b64cdba8f076447da454c86782e6da61" creation-date="09/15/2022 15:43:08" order-index="4" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="1171" y1="482" x2="909" y2="423" start-border-pos="0.125" end-border-pos="0.625" start-local-pos="75" end-local-pos="70" name-position="0,20">
- <points>
- <point x="1171" y="482" />
- <point x="909" y="423" />
- </points>
- </layout>
- <relation from="cb92b4b50dc847aebfdbd90ce365a1eb" from-iid="42fbe04b406d43938c426dd5a934f4e6" to="2626a7fd504946ccaa1eb090b6d27d0d" to-iid="2d9f12d0b5c747d680e5b9a634abc525" />
- </item>
- <item id="802906c103994cfb8c5117077f30e22a" iid="bed3456ed286491285c49010378498ab" creation-date="09/15/2022 15:43:31" order-index="5" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="691" y1="487" x2="909" y2="423" start-border-pos="0.125" end-border-pos="0.625" start-local-pos="70" end-local-pos="70" name-position="0,20">
- <points>
- <point x="691" y="487" />
- <point x="909" y="423" />
- </points>
- </layout>
- <relation from="7546dafc2b0d406bb9cf489c5eeb4aff" from-iid="c0a6c5ce0e1b45008fd2ef6d6c8d1a8c" to="2626a7fd504946ccaa1eb090b6d27d0d" to-iid="2d9f12d0b5c747d680e5b9a634abc525" />
- </item>
- <item id="dia55312d629c641938b485196c9371fe44919" iid="15406135242e4cdda2683de4a2211c46" name="" creation-date="09/15/2022 15:44:58" order-index="6" type="diagram-description">
- <layout ax="21" ay="97" awidth="350" aheight="209" x="21" y="97" width="350" height="209" rotation-center="0,-14.5" />
- </item>
- <item id="874b9f152e0b445dbcfeee89df6a5ea4" iid="2bb5aadc002443269d030457205ef0eb" show-fields="false" creation-date="11/08/2022 05:03:49" order-index="7" type="entity">
- <layout ax="724" ay="744" awidth="140" aheight="160" x="724" y="744" width="140" height="160" expanded="724,744,140,160" collapsed="0,0,0,0" />
- </item>
- <item id="cc2cc1a81f0b46d9990261d829151310" iid="4604c219866d4988a5babb18a2d958b0" creation-date="11/08/2022 05:06:13" order-index="8" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="797" y1="744" x2="909" y2="423" start-border-pos="0.130357142857143" end-border-pos="0.625" start-local-pos="73" end-local-pos="70" name-position="0,20">
- <points>
- <point x="797" y="744" />
- <point x="909" y="423" />
- </points>
- </layout>
- <relation from="874b9f152e0b445dbcfeee89df6a5ea4" from-iid="2bb5aadc002443269d030457205ef0eb" to="2626a7fd504946ccaa1eb090b6d27d0d" to-iid="2d9f12d0b5c747d680e5b9a634abc525" />
- </item>
- <item id="aca6de65170946639e84b6ea7b12bf9e" iid="aeae86c8983c40eb9b5e4287488c0ca6" creation-date="11/08/2022 05:06:50" order-index="9" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="793" y1="744" x2="691" y2="647" start-border-pos="0.123214285714286" end-border-pos="0.625" start-local-pos="69" end-local-pos="70" name-position="0,20">
- <points>
- <point x="793" y="744" />
- <point x="691" y="647" />
- </points>
- </layout>
- <relation from="874b9f152e0b445dbcfeee89df6a5ea4" from-iid="2bb5aadc002443269d030457205ef0eb" to="7546dafc2b0d406bb9cf489c5eeb4aff" to-iid="c0a6c5ce0e1b45008fd2ef6d6c8d1a8c" />
- </item>
- <item id="84ab40101b0b4e5caa621287dc10fd91" iid="88601d8528a44a76b70325b3936d4e54" show-fields="false" creation-date="11/08/2022 05:09:07" order-index="10" type="entity">
- <layout ax="1096" ay="744" awidth="140" aheight="160" x="1096" y="744" width="140" height="160" expanded="1096,744,140,160" collapsed="0,0,0,0" />
- </item>
- <item id="26f7ba623f254dd28b60add6ba05099c" iid="3ec42572547541a3ae8a3c32a4a5fd07" creation-date="11/09/2022 16:26:55" order-index="11" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="1096" y1="824" x2="864" y2="824" start-border-pos="0.875" end-border-pos="0.375" start-local-pos="80" end-local-pos="80" name-position="0,20">
- <points>
- <point x="1096" y="824" />
- <point x="864" y="824" />
- </points>
- </layout>
- <relation from="84ab40101b0b4e5caa621287dc10fd91" from-iid="88601d8528a44a76b70325b3936d4e54" from-field="84ab40101b0b4e5caa621287dc10fd91_module" to="874b9f152e0b445dbcfeee89df6a5ea4" to-iid="2bb5aadc002443269d030457205ef0eb" />
- </item>
- </layer>
- </diagram>
- <diagram type="requirements" id="pba77ba9fdd314810965c16d702e875d3_966553081" name="General.Requitements" order-index="2" overview-order-index="0" uid="" name-style="" auto-routed-paths="false" default-line-style="default">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author>Dalibor Votruba</author>
- </authors>
- <description>General requirements list</description>
- <creation-date>09/15/2022 15:52:35</creation-date>
- <change-date>09/15/2022 15:52:35</change-date>
- <revision-count>0</revision-count>
- <version>0.0.1</version>
- </meta>
- <abstract-items>
- <item id="f57cd7c78a5e483ebb3edb6a59957a97" cid="REQ014" type="requirement" name="RQ_CSTR_DB_CROSS_SCHEMA_1" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:09:33">
- <requirement id="2.1.2.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Data </t>
- </p>
- <p>
- <t>referenced </t>
- </p>
- <p>
- <t>cross </t>
- </p>
- <p>
- <t>schema </t>
- </p>
- <p>
- <t>with </t>
- </p>
- <p>
- <t>Id
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>1</index>
- <row-height>0</row-height>
- </requirement>
- </item>
- <item id="c19c4449f012422dbba1ddec55021b44" cid="REL004" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:57:00" from="d3486fe91b1f476e8a3393099f04e99e" to="ba48530a7b5245a7b6efcf3d8e61f067" visibility="package">
- <relation from="d3486fe91b1f476e8a3393099f04e99e" to="ba48530a7b5245a7b6efcf3d8e61f067" derived="false">
- <start-role id="umlar-bbbda7d9-216a-4bf1-8616-4a711042a97f" name="" navigability="" association-type="association" visibility="private" />
- <end-role id="umlar-7bf7c9f6-1749-468c-a24e-1de3dcfcc0ff" name="" navigability="" association-type="composition" visibility="private" />
- </relation>
- </item>
- <item id="c34f0bc111894b608624e52c0815c07a" cid="REQ007" type="requirement" name="RQ_TECH_SPEC_FE_4" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:02:23">
- <requirement id="3.4.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Frontend: </t>
- </p>
- <p>
- <t>ASP.NET
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>3</index>
- <row-height>0</row-height>
- </requirement>
- </item>
- <item id="0a48454de005413c92e4a5cce0d2982c" cid="REQ010" type="requirement" name="RQ_CONSTRAINTS" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:07:00">
- <requirement id="2.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Constraints
- </t>
- </p>
- </paragraph>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>1</index>
- <row-height>0</row-height>
- <requirement ref="c54c944000d84837bbb378cebd81a4e2" />
- <requirement ref="f2c72e50f02843f08f5a7b84d1b0047f" />
- </requirement>
- </item>
- <item id="ce75414afc48414db34ec56233570770" cid="REL005" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:58:04" from="05792695378d4e0fa3cdd3681474e8f6" to="ba48530a7b5245a7b6efcf3d8e61f067" visibility="package">
- <relation from="05792695378d4e0fa3cdd3681474e8f6" to="ba48530a7b5245a7b6efcf3d8e61f067" derived="false">
- <start-role id="umlar-079b95ec-83bf-4369-8b4b-94ede2d285f7" name="" navigability="" association-type="association" visibility="private" />
- <end-role id="umlar-91166476-9a2b-4f6e-8e4d-f257d32d2881" name="" navigability="" association-type="composition" visibility="private" />
- </relation>
- </item>
- <item id="57b3095ce64f4492bf2b9b93738232bf" cid="REL007" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:02:23" from="c34f0bc111894b608624e52c0815c07a" to="ba48530a7b5245a7b6efcf3d8e61f067" visibility="package">
- <relation from="c34f0bc111894b608624e52c0815c07a" to="ba48530a7b5245a7b6efcf3d8e61f067" derived="false">
- <start-role id="umlar-94d9c5a5-4aee-470f-a86e-2d2a8e055db8" name="" navigability="" association-type="association" visibility="private" />
- <end-role id="umlar-854ee18c-6cbe-4bab-8173-71a4176a7198" name="" navigability="" association-type="composition" visibility="private" />
- </relation>
- </item>
- <item id="05792695378d4e0fa3cdd3681474e8f6" cid="REQ005" type="requirement" name="RQ_TECH_SPEC_FRAMEWORK_2" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:58:04">
- <requirement id="3.2.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>.NET </t>
- </p>
- <p>
- <t>6, </t>
- </p>
- <p>
- <t>EF
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>1</index>
- <row-height>0</row-height>
- </requirement>
- </item>
- <item id="c42a187a572a4c2c80d005bf4ea52f65" cid="REQ001" type="requirement" name="RQ_SUP_USER" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:53:11">
- <requirement id="1.1.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Supports</t>
- </p>
- <p>
- <t> </t>
- </p>
- <p>
- <t>users </t>
- </p>
- <p>
- <t>and </t>
- </p>
- <p>
- <t>roles </t>
- </p>
- <p>
- <t>management
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>0</index>
- <row-height>0</row-height>
- </requirement>
- </item>
- <item id="7888a9de9bb14ac0a6fadd2418d0d7a6" cid="REQ013" type="requirement" name="RQ_CSTR_DB_SCHPERMOD_1" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:08:33">
- <requirement id="2.1.1.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Schema </t>
- </p>
- <p>
- <t>per </t>
- </p>
- <p>
- <t>module
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>0</index>
- <row-height>0</row-height>
- </requirement>
- </item>
- <item id="b92a1d894874430fb846cd4ffebbe4e1" cid="REL014" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:09:33" from="f57cd7c78a5e483ebb3edb6a59957a97" to="c54c944000d84837bbb378cebd81a4e2" visibility="package">
- <relation from="f57cd7c78a5e483ebb3edb6a59957a97" to="c54c944000d84837bbb378cebd81a4e2" derived="false">
- <start-role id="umlar-423e6c82-85d6-443b-8625-5f07aecf1202" name="" navigability="" association-type="association" visibility="private" />
- <end-role id="umlar-c701658c-e514-4bc8-bcb1-1bb373203a4a" name="" navigability="" association-type="composition" visibility="private" />
- </relation>
- </item>
- <item id="2ffa044974b44d11a13593ba0173375b" cid="REL010" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:05:39" from="b2345a523c6b4b969a3fc4b92c2a427e" to="f3f58833e12d41adbad092d5fa821ae6" visibility="package">
- <relation from="b2345a523c6b4b969a3fc4b92c2a427e" to="f3f58833e12d41adbad092d5fa821ae6" derived="false">
- <start-role id="umlar-0e7d2f8f-2a37-411a-bff0-74c62cdb957a" name="" navigability="" association-type="association" visibility="private" />
- <end-role id="umlar-a18b7f87-7f86-41a7-9b9e-f29d6476e500" name="" navigability="" association-type="composition" visibility="private" />
- </relation>
- </item>
- <item id="b8f1b1ee8380442a9b9806bcaabd60e1" cid="REL009" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:04:56" from="c776555b542842099176f5d00fbd63e4" to="f3f58833e12d41adbad092d5fa821ae6" visibility="package">
- <relation from="c776555b542842099176f5d00fbd63e4" to="f3f58833e12d41adbad092d5fa821ae6" derived="false">
- <start-role id="umlar-f4b7161f-40c0-4a80-8fbc-193f49d5c778" name="" navigability="" association-type="association" visibility="private" />
- <end-role id="umlar-2aec7c25-21df-4844-8d5f-a9d216d9f92e" name="" navigability="" association-type="composition" visibility="private" />
- </relation>
- </item>
- <item id="d31aa3cec9784517b6f38b38341c1799" cid="REL006" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:59:19" from="cc5e96719a7b4470b17001e1bc806b61" to="ba48530a7b5245a7b6efcf3d8e61f067" visibility="package">
- <relation from="cc5e96719a7b4470b17001e1bc806b61" to="ba48530a7b5245a7b6efcf3d8e61f067" derived="false">
- <start-role id="umlar-0001072f-4ad5-4a14-a766-b2957377bec3" name="" navigability="" association-type="association" visibility="private" />
- <end-role id="umlar-79164b1d-c08e-4b5c-8f1e-55b726537f82" name="" navigability="" association-type="composition" visibility="private" />
- </relation>
- </item>
- <item id="d3486fe91b1f476e8a3393099f04e99e" cid="REQ004" type="requirement" name="RQ_TECH_SPEC_PLATFORM_1" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:57:00">
- <requirement id="3.1.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>OS: </t>
- </p>
- <p>
- <t>Windows, </t>
- </p>
- <p>
- <t>Linux
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>0</index>
- <row-height>0</row-height>
- </requirement>
- </item>
- <item id="cc5e96719a7b4470b17001e1bc806b61" cid="REQ006" type="requirement" name="RQ_TECH_SPEC_DB_3" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:59:19">
- <requirement id="3.3.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Supports: </t>
- </p>
- <p>
- <t>MSSQL, </t>
- </p>
- <p>
- <t>PostgreSQL
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>2</index>
- <row-height>0</row-height>
- </requirement>
- </item>
- <item id="6236eeabf4f94d1984205fd7fcb75b72" cid="REL008" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:04:52" from="c42a187a572a4c2c80d005bf4ea52f65" to="f3f58833e12d41adbad092d5fa821ae6" visibility="package">
- <relation from="c42a187a572a4c2c80d005bf4ea52f65" to="f3f58833e12d41adbad092d5fa821ae6" derived="false">
- <start-role id="umlar-696a6ae5-2c5b-4315-8509-6910309626c0" name="" navigability="" association-type="association" visibility="private" />
- <end-role id="umlar-c75275b3-d397-4fdc-9c8d-6d64236f1cfe" name="" navigability="" association-type="composition" visibility="private" />
- </relation>
- </item>
- <item id="b2345a523c6b4b969a3fc4b92c2a427e" cid="REQ009" type="requirement" name="RQ_SUP_SETTINGS" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:05:39">
- <requirement id="1.3.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Support </t>
- </p>
- <p>
- <t>module </t>
- </p>
- <p>
- <t>specific </t>
- </p>
- <p>
- <t>settings
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>2</index>
- <row-height>0</row-height>
- </requirement>
- </item>
- <item id="ba48530a7b5245a7b6efcf3d8e61f067" cid="REQ003" type="requirement" name="RQ_TECH_SPEC" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:56:20">
- <requirement id="3.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Technical </t>
- </p>
- <p>
- <t>requirements
- </t>
- </p>
- </paragraph>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>2</index>
- <row-height>0</row-height>
- <requirement ref="d3486fe91b1f476e8a3393099f04e99e" />
- <requirement ref="05792695378d4e0fa3cdd3681474e8f6" />
- <requirement ref="cc5e96719a7b4470b17001e1bc806b61" />
- <requirement ref="c34f0bc111894b608624e52c0815c07a" />
- </requirement>
- </item>
- <item id="613bacfba1584c98951c8961e3c0cc5e" cid="REL011" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:07:27" from="c54c944000d84837bbb378cebd81a4e2" to="0a48454de005413c92e4a5cce0d2982c" visibility="package">
- <relation from="c54c944000d84837bbb378cebd81a4e2" to="0a48454de005413c92e4a5cce0d2982c" derived="false">
- <start-role id="umlar-d48e5394-9a61-4927-bb93-d93364a80038" name="" navigability="" association-type="association" visibility="private" />
- <end-role id="umlar-f1962cfa-bf9e-4a70-8799-da33b014ad08" name="" navigability="" association-type="composition" visibility="private" />
- </relation>
- </item>
- <item id="4db2cc42f34c4caa94683e00c470b9da" cid="REL013" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:08:33" from="7888a9de9bb14ac0a6fadd2418d0d7a6" to="c54c944000d84837bbb378cebd81a4e2" visibility="package">
- <relation from="7888a9de9bb14ac0a6fadd2418d0d7a6" to="c54c944000d84837bbb378cebd81a4e2" derived="false">
- <start-role id="umlar-e7ad6a7e-5762-4095-9898-fc51424a1630" name="" navigability="" association-type="association" visibility="private" />
- <end-role id="umlar-32228af5-36f3-486d-915d-60154cd74cd6" name="" navigability="" association-type="composition" visibility="private" />
- </relation>
- </item>
- <item id="f2c72e50f02843f08f5a7b84d1b0047f" cid="REQ012" type="requirement" name="RQ_CSTR_APP" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:07:51">
- <requirement id="2.2.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Application </t>
- </p>
- <p>
- <t>constraints
- </t>
- </p>
- </paragraph>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>1</index>
- <row-height>0</row-height>
- </requirement>
- </item>
- <item id="c776555b542842099176f5d00fbd63e4" cid="REQ002" type="requirement" name="RQ_SUP_TENANT" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:54:52">
- <requirement id="1.2.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Supports </t>
- </p>
- <p>
- <t>tenant </t>
- </p>
- <p>
- <t>access </t>
- </p>
- <p>
- <t>to </t>
- </p>
- <p>
- <t>data </t>
- </p>
- <p>
- <t>and </t>
- </p>
- <p>
- <t>functionality
- </t>
- </p>
- </paragraph>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>1</index>
- <row-height>0</row-height>
- </requirement>
- </item>
- <item id="f3f58833e12d41adbad092d5fa821ae6" cid="REQ008" type="requirement" name="RQ_FUNC_SUP" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:04:21">
- <requirement id="1.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Functionality
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>0</index>
- <row-height>0</row-height>
- <requirement ref="c42a187a572a4c2c80d005bf4ea52f65" />
- <requirement ref="c776555b542842099176f5d00fbd63e4" />
- <requirement ref="b2345a523c6b4b969a3fc4b92c2a427e" />
- </requirement>
- </item>
- <item id="c54c944000d84837bbb378cebd81a4e2" cid="REQ011" type="requirement" name="RQ_CSTR_DB" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:07:27">
- <requirement id="2.1.">
- <description>
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Database </t>
- </p>
- <p>
- <t>constraints
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </description>
- <priority>0</priority>
- <index>0</index>
- <row-height>0</row-height>
- <requirement ref="7888a9de9bb14ac0a6fadd2418d0d7a6" />
- <requirement ref="f57cd7c78a5e483ebb3edb6a59957a97" />
- </requirement>
- </item>
- <item id="fbc97786a07c4aaa90c643ba77619c6e" cid="REL012" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:07:51" from="f2c72e50f02843f08f5a7b84d1b0047f" to="0a48454de005413c92e4a5cce0d2982c" visibility="package">
- <relation from="f2c72e50f02843f08f5a7b84d1b0047f" to="0a48454de005413c92e4a5cce0d2982c" derived="false">
- <start-role id="umlar-57ac9deb-eb59-4288-8b46-5dfe7e6806d5" name="" navigability="" association-type="association" visibility="private" />
- <end-role id="umlar-514389a4-6158-4bb8-9b94-96bddb68daf5" name="" navigability="" association-type="composition" visibility="private" />
- </relation>
- </item>
- </abstract-items>
- <layer id="142a29da37304668873356c338030d64" name="Default" visible="true" enabled="true" locked="false">
- <item id="c42a187a572a4c2c80d005bf4ea52f65" iid="ef0d3dc3c7534c9c8d5b86c3414dba49" creation-date="09/15/2022 15:54:52" order-index="0" type="entity">
- <layout ax="0" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="c776555b542842099176f5d00fbd63e4" iid="dbc34015133944c7b06cd58fdb6baba8" creation-date="09/15/2022 15:54:52" order-index="1" type="entity">
- <layout ax="160" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="ba48530a7b5245a7b6efcf3d8e61f067" iid="590a876d59524d5a9ff4472f671749f8" creation-date="09/15/2022 15:56:20" order-index="2" type="entity">
- <layout ax="1200" ay="0" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="d3486fe91b1f476e8a3393099f04e99e" iid="769b7c24075247bea432653a6094610c" creation-date="09/15/2022 15:57:00" order-index="3" type="entity">
- <layout ax="960" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="c19c4449f012422dbba1ddec55021b44" iid="aeeed071d62842828a1bc5e289ebdf31" creation-date="09/15/2022 15:57:00" order-index="4" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-to-fields="false" auto-path="" x1="1100" y1="229" x2="1200" y2="141" start-border-pos="0.279296875" end-border-pos="0.779296875" name-position="0,20">
- <points>
- <point x="1100" y="229" />
- <point x="1200" y="141" />
- </points>
- </layout>
- <relation from="d3486fe91b1f476e8a3393099f04e99e" from-iid="769b7c24075247bea432653a6094610c" to="ba48530a7b5245a7b6efcf3d8e61f067" to-iid="590a876d59524d5a9ff4472f671749f8" />
- </item>
- <item id="05792695378d4e0fa3cdd3681474e8f6" iid="0f0d87d84f0444aeb6049b006cbe38ec" creation-date="09/15/2022 15:58:04" order-index="5" type="entity">
- <layout ax="1120" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="ce75414afc48414db34ec56233570770" iid="1553ab8748104a02a08b3109dbac3a53" creation-date="09/15/2022 15:58:04" order-index="6" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-to-fields="false" auto-path="" x1="1220" y1="210" x2="1240" y2="160" start-border-pos="0.179421779087612" end-border-pos="0.679421779087612" name-position="0,20">
- <points>
- <point x="1220" y="210" />
- <point x="1240" y="160" />
- </points>
- </layout>
- <relation from="05792695378d4e0fa3cdd3681474e8f6" from-iid="0f0d87d84f0444aeb6049b006cbe38ec" to="ba48530a7b5245a7b6efcf3d8e61f067" to-iid="590a876d59524d5a9ff4472f671749f8" />
- </item>
- <item id="cc5e96719a7b4470b17001e1bc806b61" iid="e1f9e63dddc7477d84b7086014da3246" creation-date="09/15/2022 15:59:19" order-index="7" type="entity">
- <layout ax="1280" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="d31aa3cec9784517b6f38b38341c1799" iid="85e6fba6ee5840848c36926369f05e57" creation-date="09/15/2022 15:59:19" order-index="8" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-to-fields="false" auto-path="" x1="1320" y1="210" x2="1300" y2="160" start-border-pos="0.0705782209123884" end-border-pos="0.570578220912388" name-position="0,20">
- <points>
- <point x="1320" y="210" />
- <point x="1300" y="160" />
- </points>
- </layout>
- <relation from="cc5e96719a7b4470b17001e1bc806b61" from-iid="e1f9e63dddc7477d84b7086014da3246" to="ba48530a7b5245a7b6efcf3d8e61f067" to-iid="590a876d59524d5a9ff4472f671749f8" />
- </item>
- <item id="c34f0bc111894b608624e52c0815c07a" iid="fa705d4f1e714eb3abe299e984d05976" creation-date="09/15/2022 16:02:23" order-index="9" type="entity">
- <layout ax="1440" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="57b3095ce64f4492bf2b9b93738232bf" iid="bffba19bf8d14e9faa63ce8103a20b9f" creation-date="09/15/2022 16:02:23" order-index="10" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-to-fields="false" auto-path="" x1="1440" y1="229" x2="1340" y2="141" start-border-pos="0.970703125" end-border-pos="0.470703125" name-position="0,20">
- <points>
- <point x="1440" y="229" />
- <point x="1340" y="141" />
- </points>
- </layout>
- <relation from="c34f0bc111894b608624e52c0815c07a" from-iid="fa705d4f1e714eb3abe299e984d05976" to="ba48530a7b5245a7b6efcf3d8e61f067" to-iid="590a876d59524d5a9ff4472f671749f8" />
- </item>
- <item id="f3f58833e12d41adbad092d5fa821ae6" iid="34c2cdfe8fe947ecb22185febc978355" creation-date="09/15/2022 16:04:21" order-index="11" type="entity">
- <layout ax="160" ay="0" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="6236eeabf4f94d1984205fd7fcb75b72" iid="b0460ad75397461abc49940fb32669c6" creation-date="09/15/2022 16:04:52" order-index="12" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-to-fields="false" auto-path="" x1="131" y1="210" x2="169" y2="160" start-border-pos="0.233843530927386" end-border-pos="0.733843530927386" name-position="0,20">
- <points>
- <point x="131" y="210" />
- <point x="169" y="160" />
- </points>
- </layout>
- <relation from="c42a187a572a4c2c80d005bf4ea52f65" from-iid="ef0d3dc3c7534c9c8d5b86c3414dba49" to="f3f58833e12d41adbad092d5fa821ae6" to-iid="34c2cdfe8fe947ecb22185febc978355" />
- </item>
- <item id="b8f1b1ee8380442a9b9806bcaabd60e1" iid="0a37c13b2a6142baab26e9eb774b2d91" creation-date="09/15/2022 16:04:56" order-index="13" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-to-fields="false" auto-path="" x1="230" y1="210" x2="230" y2="160" start-border-pos="0.125" end-border-pos="0.625" name-position="0,20">
- <points>
- <point x="230" y="210" />
- <point x="230" y="160" />
- </points>
- </layout>
- <relation from="c776555b542842099176f5d00fbd63e4" from-iid="dbc34015133944c7b06cd58fdb6baba8" to="f3f58833e12d41adbad092d5fa821ae6" to-iid="34c2cdfe8fe947ecb22185febc978355" />
- </item>
- <item id="b2345a523c6b4b969a3fc4b92c2a427e" iid="0927835d3a8e47e9a129bc83681c14b2" creation-date="09/15/2022 16:05:39" order-index="14" type="entity">
- <layout ax="320" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="2ffa044974b44d11a13593ba0173375b" iid="de44e430bcf54390a9b5063c2953ed62" creation-date="09/15/2022 16:05:39" order-index="15" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-to-fields="false" auto-path="" x1="329" y1="210" x2="291" y2="160" start-border-pos="0.0161564418247768" end-border-pos="0.516156441824777" name-position="0,20">
- <points>
- <point x="329" y="210" />
- <point x="291" y="160" />
- </points>
- </layout>
- <relation from="b2345a523c6b4b969a3fc4b92c2a427e" from-iid="0927835d3a8e47e9a129bc83681c14b2" to="f3f58833e12d41adbad092d5fa821ae6" to-iid="34c2cdfe8fe947ecb22185febc978355" />
- </item>
- <item id="0a48454de005413c92e4a5cce0d2982c" iid="94bae0777f80427c8614e13788828305" creation-date="09/15/2022 16:07:00" order-index="16" type="entity">
- <layout ax="640" ay="0" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="c54c944000d84837bbb378cebd81a4e2" iid="4b2d4bb4faf54600970aadb1386122d9" creation-date="09/15/2022 16:07:27" order-index="17" type="entity">
- <layout ax="560" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="613bacfba1584c98951c8961e3c0cc5e" iid="ec3d371dc2994470b6334a6757e94560" creation-date="09/15/2022 16:07:27" order-index="18" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-to-fields="false" auto-path="" x1="660" y1="210" x2="680" y2="160" start-border-pos="0.179421779087612" end-border-pos="0.679421779087612" name-position="0,20">
- <points>
- <point x="660" y="210" />
- <point x="680" y="160" />
- </points>
- </layout>
- <relation from="c54c944000d84837bbb378cebd81a4e2" from-iid="4b2d4bb4faf54600970aadb1386122d9" to="0a48454de005413c92e4a5cce0d2982c" to-iid="94bae0777f80427c8614e13788828305" />
- </item>
- <item id="f2c72e50f02843f08f5a7b84d1b0047f" iid="3f442c69c7894baab327bd10228093bd" creation-date="09/15/2022 16:07:51" order-index="19" type="entity">
- <layout ax="800" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="fbc97786a07c4aaa90c643ba77619c6e" iid="7ef7a00004c64c1c87085786665f2f8a" creation-date="09/15/2022 16:07:51" order-index="20" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-to-fields="false" auto-path="" x1="809" y1="210" x2="771" y2="160" start-border-pos="0.0161564418247768" end-border-pos="0.516156441824777" name-position="0,20">
- <points>
- <point x="809" y="210" />
- <point x="771" y="160" />
- </points>
- </layout>
- <relation from="f2c72e50f02843f08f5a7b84d1b0047f" from-iid="3f442c69c7894baab327bd10228093bd" to="0a48454de005413c92e4a5cce0d2982c" to-iid="94bae0777f80427c8614e13788828305" />
- </item>
- <item id="7888a9de9bb14ac0a6fadd2418d0d7a6" iid="793d4718c8eb490e9e0722a2a8a68c07" creation-date="09/15/2022 16:08:33" order-index="21" type="entity">
- <layout ax="480" ay="420" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="4db2cc42f34c4caa94683e00c470b9da" iid="0d4d3fa8a9284fcfb762650b6e3d1014" creation-date="09/15/2022 16:08:33" order-index="22" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-to-fields="false" auto-path="" x1="580" y1="420" x2="600" y2="370" start-border-pos="0.179421779087612" end-border-pos="0.679421779087612" name-position="0,20">
- <points>
- <point x="580" y="420" />
- <point x="600" y="370" />
- </points>
- </layout>
- <relation from="7888a9de9bb14ac0a6fadd2418d0d7a6" from-iid="793d4718c8eb490e9e0722a2a8a68c07" to="c54c944000d84837bbb378cebd81a4e2" to-iid="4b2d4bb4faf54600970aadb1386122d9" />
- </item>
- <item id="f57cd7c78a5e483ebb3edb6a59957a97" iid="db9a6d1f2f57491b9e330d1441bc27e0" creation-date="09/15/2022 16:09:33" order-index="23" type="entity">
- <layout ax="640" ay="420" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
- </item>
- <item id="b92a1d894874430fb846cd4ffebbe4e1" iid="559626d61b274c29b7222b8071726dc2" creation-date="09/15/2022 16:09:33" order-index="24" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" start-multiplicity-position="25,-15" end-multiplicity-position="25,15" line-style="oblique" lock-to-fields="false" auto-path="" x1="680" y1="420" x2="660" y2="370" start-border-pos="0.0705782209123884" end-border-pos="0.570578220912388" name-position="0,20">
- <points>
- <point x="680" y="420" />
- <point x="660" y="370" />
- </points>
- </layout>
- <relation from="f57cd7c78a5e483ebb3edb6a59957a97" from-iid="db9a6d1f2f57491b9e330d1441bc27e0" to="c54c944000d84837bbb378cebd81a4e2" to-iid="4b2d4bb4faf54600970aadb1386122d9" />
- </item>
- </layer>
- </diagram>
- </model>
- <model id="pcb9044279dee459f9eaa1fb8d4fe6bf3_148351808" name="Database" namespace="" order-index="2" default-type-set="MSSQL" expanded="true">
- <meta>
- <authors>
- <author>Dalibor Votruba</author>
- </authors>
- <description />
- <creation-date>11/04/2022 05:56:57</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models>
- <model id="ped66179a97834e0ca74f024bc91be326_173380611" name="Base" namespace="" order-index="2" expanded="true">
- <meta>
- <authors>
- <author>Dalibor Votruba</author>
- </authors>
- <description />
- <creation-date>11/04/2022 08:34:43</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models />
- <diagram type="entity-relationship" id="p2d80210b075e4f5d8725460fac0df0c9_518455272" name="Base" order-index="0" uid="" name-style="" auto-routed-paths="false" default-line-style="default" view-location="26,170">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author>Dalibor Votruba</author>
- </authors>
- <description />
- <creation-date>11/04/2022 05:59:30</creation-date>
- <change-date>11/05/2022 09:28:10</change-date>
- <revision-count>0</revision-count>
- <version>1.0.0.0</version>
- </meta>
- <abstract-items>
- <item id="7e382f0a73dd4e12b0db78aea55eb53b" cid="REL021" type="erd-relationship" name="REL_TENANTCOUNTRY_COUNTRY_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:25:51" from="979e2dd2651742e08af31f818c22bf4e" to="84a3ecb6b97b4e9cbcf5d8255039f80c">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="7e382f0a73dd4e12b0db78aea55eb53b_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="ac565ef6d613e4ce395193ba85470dd24288" to-attribute="aeedb6cafa13c432289059d4aeee86fbf868" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="1995ba399cb24729b4df7bbbc0c77b31" cid="TBL_SETTING" type="erd-entity" name="Setting" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/04/2022 06:37:09">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="1995ba399cb24729b4df7bbbc0c77b31_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="PK_SETTING_ID" description="" />
- <attributes>
- <attribute uid="a43f81acbacea4b5eb1ab53c404241e92410" cid="SETTING_ID" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Setting primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/04/2022 08:29:04" />
- <attribute uid="a08479372eb77415d9e7fc24b12fd0d42593" cid="SETTING_PARENT_ID" name="ParentId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="true" description="Reference to parent setting" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 08:29:45" />
- <attribute uid="ac6d5df86cafd42679955a33396a23de5550" cid="SETTING_TENANT_ID" name="TenantId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to tenant that setting belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 08:29:55" />
- <attribute uid="a86d9f9ac361249ab9905468baf25092a181" cid="SETTING_MODULE_CODE" name="ModuleCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="10" foreign-key="false" primary-key="false" nullable="false" description="Module code that setting belongs. Secondary key" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 08:30:06" />
- <attribute uid="afefa364546f4472f95e4c5942672c099497" cid="SETTING_SEQUENCE_NO" name="SequenceNo" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Order number" default-value="0" default-value-name="" auto-increment="false" creation-date="11/04/2022 08:30:16" />
- <attribute uid="ae3252c151d6c4eac949dda3b840d19d1410" cid="SETTING_CODE" name="Code" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="false" description="Setting code. Main key to search." default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 08:30:23" />
- <attribute uid="aee21d6a30c8149ea8b163002e76c4c9a136" cid="SETTING_DESCRIPTION" name="Description" type="nvarchar" type-id="MsSql.nvarchar" type-size="500" foreign-key="false" primary-key="false" nullable="true" description="Setting value description" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 08:30:44" />
- <attribute uid="a656f4fce42cc4990899868940c2c8a76803" cid="SETTING_VALUE_TYPE" name="ValueTypeQualified" type="nvarchar" type-id="MsSql.nvarchar" type-size="500" foreign-key="false" primary-key="false" nullable="false" description="Qualified name of value type" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 08:30:55" />
- <attribute uid="a4c27edb789294dbaa5c381ca3f13c54e445" cid="SETTING_VALUE" name="Value" type="nvarchar" type-id="MsSql.nvarchar" type-size="MAX" foreign-key="false" primary-key="false" nullable="true" description="Setting value" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 08:41:41" />
- <attribute uid="a5a2bcd803ad3407ab6b1db0a815764e4139" cid="SETTING_ENABLED" name="IsEnabled" type="bit" type-id="MsSql.bit" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Flag if setting is enabled" default-value="0" default-value-name="" auto-increment="false" creation-date="11/04/2022 08:31:13" />
- <attribute uid="ab9bc8ce5599c493795a2dd1394c7d9f9410" cid="SETTING_CREATED" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/04/2022 08:31:22" />
- <attribute uid="a7223fbe8ebb342958c4e513f66a7b6ed410" cid="SETTING_MODIFIED" name="Modified" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record modified timestamp" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 08:31:31" />
- <attribute uid="a45d742fcee4e48199b79cf0888f22a34410" cid="SETTING_MODIFIER" name="Modifier" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="true" description="Record modifier signature" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 08:31:40" />
- </attributes>
- <indexes>
- <index uid="ix47d475815cf546db98d5f77def2062a053" cid="ERI003" name="IDX_SETTING_TENANT_MCODE_CODE" is-unique="true">
- <index-attributes>
- <index-attribute ref="ac6d5df86cafd42679955a33396a23de5550" sort="Asc" non-key="false" />
- <index-attribute ref="a86d9f9ac361249ab9905468baf25092a181" sort="Asc" non-key="false" />
- <index-attribute ref="ae3252c151d6c4eac949dda3b840d19d1410" sort="Asc" non-key="false" />
- </index-attributes>
- </index>
- </indexes>
- </item>
- <item id="031a668b1d6a45e1907a612d85b43d24" cid="TBL_USER" type="erd-entity" name="User" style-class="Flat Green" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/04/2022 06:15:45">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="031a668b1d6a45e1907a612d85b43d24_table_c" type="table" ref="" />
- </stereotype-instances>
- <style class="Flat Green" />
- <entity pk-constraint-name="PK_USER_ID" description="" />
- <attributes>
- <attribute uid="a6dda4862ea794595834ccbbeacdb68a8699" cid="USER_ID" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="User primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/04/2022 06:20:45" />
- <attribute uid="a7561c31027e444b7b5d5c9bc65164f69709" cid="USER_LOGINNAME" name="LoginName" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="false" description="User login name name. Key search value" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:20:59" />
- <attribute uid="ae5fba9294f7446efa852c3a3acb23d81709" cid="USER_ISLOCKED" name="IsLocked" type="bit" type-id="MsSql.bit" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Flag if user access locked (not accessable)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:21:10" />
- <attribute uid="adb8d22041c0b471180808deb4edf6067709" cid="USER_CREATED" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:21:21" />
- <attribute uid="a2997dfb25d574d0dae75321885c29407709" cid="USER_MODIFIED" name="Modified" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record modified timestamp" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:21:33" />
- <attribute uid="acc5094228b2748e2b2511ffe10fd5a01185" cid="USER_MODIFIER" name="Modifier" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="true" description="Record modifier signature" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:21:43" />
- </attributes>
- <indexes>
- <index uid="ix930d9e826b994061b0f09816b8444d28973" cid="ERI004" name="IDX_USER_LOGINNAME" is-unique="true">
- <index-attributes>
- <index-attribute ref="a7561c31027e444b7b5d5c9bc65164f69709" sort="Asc" non-key="false" />
- </index-attributes>
- </index>
- </indexes>
- </item>
- <item id="eed22cb50bf14a369a44386ecff2eddf" cid="REL_SETTING_SETTING_ID" type="erd-relationship" name="REL_SETTING_SETTING_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/04/2022 06:46:59" from="1995ba399cb24729b4df7bbbc0c77b31" to="1995ba399cb24729b4df7bbbc0c77b31">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="eed22cb50bf14a369a44386ecff2eddf_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="0..1">
- <attribute-pairs>
- <attribute-pair from-attribute="a08479372eb77415d9e7fc24b12fd0d42593" to-attribute="a43f81acbacea4b5eb1ab53c404241e92410" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="38364cd5ebf7433c827087a1d94c73ca" cid="REL_TENANTUSER_USER_ID" type="erd-relationship" name="REL_TENANTUSER_USER_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/04/2022 06:28:44" from="f7ba98ff46b54ebd99e6e9d48d4aeee9" to="031a668b1d6a45e1907a612d85b43d24">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="38364cd5ebf7433c827087a1d94c73ca_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="0..1">
- <attribute-pairs>
- <attribute-pair from-attribute="a6e7eae435a0345fea29288220aa8aa1d623" to-attribute="a6dda4862ea794595834ccbbeacdb68a8699" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="7b432831355f42cfa41af8f2eaa783a3" cid="REL_SETTING_TENANT_ID" type="erd-relationship" name="REL_SETTING_TENANT_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/04/2022 06:48:42" from="1995ba399cb24729b4df7bbbc0c77b31" to="e50f79968a404d3fbb33f4a02fa3b572">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="7b432831355f42cfa41af8f2eaa783a3_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="0..1">
- <attribute-pairs>
- <attribute-pair from-attribute="ac6d5df86cafd42679955a33396a23de5550" to-attribute="aeda82a68426646d3a6cfa276db9bd56f255" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="ccc94b03e9f14adf85defc647f594921" cid="REL023" type="erd-relationship" name="REL_COUNTRY_CURRENCY_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:28:10" from="84a3ecb6b97b4e9cbcf5d8255039f80c" to="cb80b20360f340559de7775b16dcf14f">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="ccc94b03e9f14adf85defc647f594921_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="ab59af341336049cab67540f6403cce1425" to-attribute="ab12dbe3ddb0e44da817555c631a0bcdd360" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="06c92dd941704baf86d79ecead01e134" cid="REL_TENANTUSER_TENANT_ID" type="erd-relationship" name="REL_TENANTUSER_TENANT_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/04/2022 06:26:57" from="f7ba98ff46b54ebd99e6e9d48d4aeee9" to="e50f79968a404d3fbb33f4a02fa3b572">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="06c92dd941704baf86d79ecead01e134_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="0..1">
- <attribute-pairs>
- <attribute-pair from-attribute="ab59b0b6bdd31441c89af642f0131a84b208" to-attribute="aeda82a68426646d3a6cfa276db9bd56f255" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="84a3ecb6b97b4e9cbcf5d8255039f80c" cid="ENT005" type="erd-entity" name="Country" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:12:36">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="84a3ecb6b97b4e9cbcf5d8255039f80c_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="PK_COUNTRY_ID" description="" />
- <attributes>
- <attribute uid="aeedb6cafa13c432289059d4aeee86fbf868" cid="EA031" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Country primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/05/2022 09:17:15" />
- <attribute uid="aee992231074d4df0b1c9b72d1434a01c129" cid="EA033" name="Code" type="nvarchar" type-id="MsSql.nvarchar" type-size="5" foreign-key="false" primary-key="false" nullable="false" description="Country code. Main key to search." default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:19:04" />
- <attribute uid="a84ef25ff46594a6a9e18a66e1b39405e129" cid="EA034" name="Name" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="false" description="Country name. Informational value." default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:19:04" />
- <attribute uid="abf111a06e7914da4afb4f701133e9d9c905" cid="EA048" name="VAT" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Percentage VAT definition" default-value="0" default-value-name="" auto-increment="false" creation-date="11/05/2022 15:48:54" />
- <attribute uid="a432919c754f74f2f8df24ca16654baa9551" cid="EA041" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:23:20" />
- <attribute uid="a896ddad847ef457eb98892af27a1433d551" cid="EA042" name="Modified" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record modified timestamp" default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:23:20" />
- <attribute uid="a088e06d1f3f844f087bd5fdb758ae8bb551" cid="EA043" name="Modifier" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="true" description="Record modifier signature" default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:23:20" />
- <attribute uid="ab59af341336049cab67540f6403cce1425" cid="EA047" name="DefaultCurrencyId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Default country currency" default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:27:07" />
- </attributes>
- <indexes>
- <index uid="ix90c5220734a44edaa19e97e31c949089832" cid="ERI005" name="IDX_COUNTRY_CODE" is-unique="true">
- <index-attributes>
- <index-attribute ref="aee992231074d4df0b1c9b72d1434a01c129" sort="Asc" non-key="false" />
- </index-attributes>
- </index>
- </indexes>
- </item>
- <item id="979e2dd2651742e08af31f818c22bf4e" cid="ENT007" type="erd-entity" name="TenantCountry" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:13:26">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="979e2dd2651742e08af31f818c22bf4e_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity description="" />
- <attributes>
- <attribute uid="af9002db56cf14129b96aa8a533353459288" cid="EA037" name="TenantId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to tenant" default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:21:27" />
- <attribute uid="ac565ef6d613e4ce395193ba85470dd24288" cid="EA038" name="CountryId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to country" default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:21:27" />
- </attributes>
- <indexes />
- </item>
- <item id="a48a9211b03c407cbb288eded410b64a" cid="REL019" type="erd-relationship" name="REL_TENANTCOUNTRY_TENANT_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:24:18" from="979e2dd2651742e08af31f818c22bf4e" to="e50f79968a404d3fbb33f4a02fa3b572">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="a48a9211b03c407cbb288eded410b64a_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="af9002db56cf14129b96aa8a533353459288" to-attribute="aeda82a68426646d3a6cfa276db9bd56f255" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="1596d482602d4447b90d648ed5031bb4" cid="ENT008" type="erd-entity" name="TenantCurrency" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:15:25">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="1596d482602d4447b90d648ed5031bb4_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity description="" />
- <attributes>
- <attribute uid="a1852ccbbf7aa4e3994563945086ea602887" cid="EA039" name="TenantId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to tenant" default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:21:56" />
- <attribute uid="a743bc958b32142279f0be7a53e28a40f887" cid="EA040" name="CurrencyId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to currency" default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:21:56" />
- </attributes>
- <indexes />
- </item>
- <item id="e50f79968a404d3fbb33f4a02fa3b572" cid="TBL_TENANT" type="erd-entity" name="Tenant" style-class="Flat Green" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/04/2022 06:00:06">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="e50f79968a404d3fbb33f4a02fa3b572_table_c" type="table" ref="" />
- </stereotype-instances>
- <style class="Flat Green" />
- <entity pk-constraint-name="PK_TENANT_ID" description="" />
- <attributes>
- <attribute uid="aeda82a68426646d3a6cfa276db9bd56f255" cid="TENANT_ID" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Tenant primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/04/2022 06:04:02" />
- <attribute uid="a4544d94868494f8aa9d8664a80f65fb9638" cid="TENANT_CODE" name="Code" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Tenant code. Main key to search." default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:07:07" />
- <attribute uid="a3634601cc1d747818c62771d239112bb670" cid="TENANT_NAME" name="Name" type="nvarchar" type-id="MsSql.nvarchar" type-size="200" foreign-key="false" primary-key="false" nullable="false" description="Tenant name. Informational value." default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:14:35" />
- <attribute uid="a6bb282d0704340c7b6af22c1cc2d0f30125" cid="TENANT_LASTACCESS" name="LastAccess" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Last access (usage) timestamp." default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:14:46" />
- <attribute uid="ab23ea74d521d4e6cbf18464261ad9882510" cid="TENANT_ISLOCKED" name="IsLocked" type="bit" type-id="MsSql.bit" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Flag if tenant locked (not accessable)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:14:56" />
- <attribute uid="abb733eee12d74c8a8b695f0c6219970821" cid="TENANT_CREATED" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:15:07" />
- <attribute uid="a6b6b29e020614f0596738612f8899579636" cid="TENANT_MODIFIED" name="Modified" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record modified timestamp" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:15:17" />
- <attribute uid="a608d5119036242479e2559b4d9a8f1ef196" cid="TENANT_MODIFIER" name="Modifier" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="true" description="Record modifier signature" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:15:26" />
- </attributes>
- <indexes>
- <index uid="ix56f43349a41048239189cd74c2596595691" cid="ERI001" name="IDX_TENANT_CODE" is-unique="true">
- <index-attributes>
- <index-attribute ref="a4544d94868494f8aa9d8664a80f65fb9638" sort="Asc" non-key="false" />
- </index-attributes>
- </index>
- </indexes>
- </item>
- <item id="cb80b20360f340559de7775b16dcf14f" cid="ENT006" type="erd-entity" name="Currency" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:12:59">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="cb80b20360f340559de7775b16dcf14f_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="PK_CURRENCY_ID" description="" />
- <attributes>
- <attribute uid="ab12dbe3ddb0e44da817555c631a0bcdd360" cid="EA032" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Currency primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/05/2022 09:17:35" />
- <attribute uid="aed59b1c4df804811bfde90b55c6713b6712" cid="EA035" name="Code" type="nvarchar" type-id="MsSql.nvarchar" type-size="5" foreign-key="false" primary-key="false" nullable="false" description="Currency code. Main key to search." default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:19:39" />
- <attribute uid="a3c54fc44689148239ae254d509f4496e712" cid="EA036" name="Name" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="false" description="Currency name. Informational value." default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:19:39" />
- <attribute uid="a150b7b7f022543269c204fc94aab1e4280" cid="EA049" name="Sign" type="nvarchar" type-id="MsSql.nvarchar" type-size="3" foreign-key="false" primary-key="false" nullable="false" description="Currency sign chars" default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 15:50:42" />
- <attribute uid="a556aaae565f64312a99efd6c5621d810288" cid="EA044" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:23:26" />
- <attribute uid="abf489d108ff04c83855cdbddabe28e5f288" cid="EA045" name="Modified" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record modified timestamp" default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:23:26" />
- <attribute uid="a3c38f9e3f9d640e183cc6eb66c758c5d288" cid="EA046" name="Modifier" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="true" description="Record modifier signature" default-value="" default-value-name="" auto-increment="false" creation-date="11/05/2022 09:23:26" />
- </attributes>
- <indexes>
- <index uid="ix900909c342d84f2ebe2f44e5dfa3f849750" cid="ERI006" name="IDX_CURRENCY_ID" is-unique="true">
- <index-attributes>
- <index-attribute ref="aed59b1c4df804811bfde90b55c6713b6712" sort="Asc" non-key="false" />
- </index-attributes>
- </index>
- </indexes>
- </item>
- <item id="4c112af66ef746a3897a3e2a89b04793" cid="REL022" type="erd-relationship" name="REL_TENANTCURRENCY_CURRENCY__ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:26:21" from="1596d482602d4447b90d648ed5031bb4" to="cb80b20360f340559de7775b16dcf14f">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="4c112af66ef746a3897a3e2a89b04793_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a743bc958b32142279f0be7a53e28a40f887" to-attribute="ab12dbe3ddb0e44da817555c631a0bcdd360" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="f7ba98ff46b54ebd99e6e9d48d4aeee9" cid="TBL_TENANTUSER" type="erd-entity" name="TenantUser" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/04/2022 06:22:55">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <documentations>
- <doc id="ef01e97791a84882b22a27717ea80d87">
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <definition>
- <sections>
- <section name="">
- <default-page>
- <page size="224,316.8" header-offset="15" footer-offset="15" unit="mm">
- <margins left="20" right="20" top="20" bottom="20" />
- </page>
- </default-page>
- </section>
- </sections>
- </definition>
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Defines </t>
- </p>
- <p>
- <t>User </t>
- </p>
- <p>
- <t>- </t>
- </p>
- <p>
- <t>Tenant </t>
- </p>
- <p>
- <t>assignments
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </doc>
- </documentations>
- <stereotype-instances>
- <stereotype id="f7ba98ff46b54ebd99e6e9d48d4aeee9_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity description="" />
- <attributes>
- <attribute uid="ab59b0b6bdd31441c89af642f0131a84b208" cid="EA015" name="TenantId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to tenant" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:24:04" />
- <attribute uid="a6e7eae435a0345fea29288220aa8aa1d623" cid="EA016" name="UserId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to user" default-value="" default-value-name="" auto-increment="false" creation-date="11/04/2022 06:25:02" />
- </attributes>
- <indexes />
- </item>
- <item id="de25be4a0e78494f885762b863143fd6" cid="REL020" type="erd-relationship" name="REL_TENANTCURRENCT_TENANT_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:25:11" from="1596d482602d4447b90d648ed5031bb4" to="e50f79968a404d3fbb33f4a02fa3b572">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="de25be4a0e78494f885762b863143fd6_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a1852ccbbf7aa4e3994563945086ea602887" to-attribute="aeda82a68426646d3a6cfa276db9bd56f255" />
- </attribute-pairs>
- </erd-relation>
- </item>
- </abstract-items>
- <layer id="b333b4971a734e6baa084175a3160d2b" name="Default" visible="true" enabled="true" locked="false">
- <item id="e50f79968a404d3fbb33f4a02fa3b572" iid="650877ac46234db3b6eaebe1730487f3" creation-date="11/04/2022 06:00:07" order-index="1" type="entity">
- <layout ax="46" ay="196" awidth="303" aheight="249" x="46" y="196" width="289" height="249" rotation-center="-74.5,-15" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="031a668b1d6a45e1907a612d85b43d24" iid="a609608a496e484594e771e9df2378b1" creation-date="11/04/2022 06:15:45" order-index="2" type="entity">
- <layout ax="715" ay="234" awidth="359" aheight="211" x="715" y="234" width="359" height="211" rotation-center="109.5,25.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="f7ba98ff46b54ebd99e6e9d48d4aeee9" iid="2dcf80fa31b04f5d9d8fb156c7bafd9d" creation-date="11/04/2022 06:22:55" order-index="3" type="entity">
- <layout ax="417" ay="22" awidth="244" aheight="106" x="417" y="22" width="244" height="106" rotation-center="-52,27" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="06c92dd941704baf86d79ecead01e134" iid="f3fbd42c29244163bdf1c415cf9d3bd6" creation-date="11/04/2022 06:26:57" order-index="4" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="417" y1="80" x2="349" y2="254" start-border-pos="0.862028301886792" end-border-pos="0.308734939759036" start-local-pos="58" end-local-pos="58" name-position="0,20">
- <points>
- <point x="417" y="80" />
- <point x="349" y="254" />
- </points>
- </layout>
- <relation from="f7ba98ff46b54ebd99e6e9d48d4aeee9" from-iid="2dcf80fa31b04f5d9d8fb156c7bafd9d" from-field="ab59b0b6bdd31441c89af642f0131a84b208" to="e50f79968a404d3fbb33f4a02fa3b572" to-iid="650877ac46234db3b6eaebe1730487f3" to-field="aeda82a68426646d3a6cfa276db9bd56f255" />
- </item>
- <item id="38364cd5ebf7433c827087a1d94c73ca" iid="1fa21a2a11ad4254bea8013c1ab0a8ab" creation-date="11/04/2022 06:28:44" order-index="5" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="661" y1="100" x2="715" y2="292" start-border-pos="0.432783018867925" end-border-pos="0.930687203791469" start-local-pos="78" end-local-pos="58" name-position="0,20">
- <points>
- <point x="661" y="100" />
- <point x="715" y="292" />
- </points>
- </layout>
- <relation from="f7ba98ff46b54ebd99e6e9d48d4aeee9" from-iid="2dcf80fa31b04f5d9d8fb156c7bafd9d" from-field="a6e7eae435a0345fea29288220aa8aa1d623" to="031a668b1d6a45e1907a612d85b43d24" to-iid="a609608a496e484594e771e9df2378b1" to-field="a6dda4862ea794595834ccbbeacdb68a8699" />
- </item>
- <item id="1995ba399cb24729b4df7bbbc0c77b31" iid="e5447239d5c14feda620a1961c696222" creation-date="11/04/2022 06:37:09" order-index="6" type="entity">
- <layout ax="485" ay="462" awidth="295" aheight="357" x="485" y="462" width="288" height="354" rotation-center="-74,97" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="eed22cb50bf14a369a44386ecff2eddf" iid="4e5e6f2ee730402aba46c57baef5c4dc" creation-date="11/04/2022 06:46:59" order-index="7" type="relation">
- <layout start-role-position="25,19" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="485" y1="540" x2="485" y2="520" start-border-pos="0.945728291316527" end-border-pos="0.959033613445378" start-local-pos="78" end-local-pos="58" name-position="0,20">
- <points>
- <point x="485" y="540" />
- <point x="138" y="539" />
- <point x="138" y="521" />
- <point x="485" y="520" />
- </points>
- </layout>
- <relation from="1995ba399cb24729b4df7bbbc0c77b31" from-iid="e5447239d5c14feda620a1961c696222" from-field="a08479372eb77415d9e7fc24b12fd0d42593" to="1995ba399cb24729b4df7bbbc0c77b31" to-iid="e5447239d5c14feda620a1961c696222" to-field="a43f81acbacea4b5eb1ab53c404241e92410" />
- </item>
- <item id="7b432831355f42cfa41af8f2eaa783a3" iid="381c2c03d0f6492eb465f91a44a7cc72" creation-date="11/04/2022 06:48:42" order-index="8" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-to-fields="true" auto-path="" x1="485" y1="558" x2="349" y2="254" start-border-pos="0.932422969187675" end-border-pos="0.308734939759036" start-local-pos="96" end-local-pos="58" name-position="0,20">
- <points>
- <point x="485" y="558" />
- <point x="349" y="254" />
- </points>
- </layout>
- <relation from="1995ba399cb24729b4df7bbbc0c77b31" from-iid="e5447239d5c14feda620a1961c696222" from-field="ac6d5df86cafd42679955a33396a23de5550" to="e50f79968a404d3fbb33f4a02fa3b572" to-iid="650877ac46234db3b6eaebe1730487f3" to-field="aeda82a68426646d3a6cfa276db9bd56f255" />
- </item>
- <item id="84a3ecb6b97b4e9cbcf5d8255039f80c" iid="e5295bc500524045bec12462bb4bf306" creation-date="11/05/2022 09:12:36" order-index="9" type="entity">
- <layout ax="867" ay="492" awidth="207" aheight="268" x="867" y="492" width="207" height="268" rotation-center="-33.5,15" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="cb80b20360f340559de7775b16dcf14f" iid="0699c36719a449eaa54119a347bbcfad" creation-date="11/05/2022 09:12:59" order-index="10" type="entity">
- <layout ax="1210" ay="511" awidth="207" aheight="249" x="1210" y="511" width="207" height="249" rotation-center="-33.5,44.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="979e2dd2651742e08af31f818c22bf4e" iid="4be9c584480042c18525567fede0988e" creation-date="11/05/2022 09:13:26" order-index="11" type="entity">
- <layout ax="397" ay="1001" awidth="140" aheight="160" x="397" y="1001" width="140" height="160" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="1596d482602d4447b90d648ed5031bb4" iid="0a741e375b0447b39b7312de458e5700" creation-date="11/05/2022 09:15:25" order-index="12" type="entity">
- <layout ax="640" ay="1001" awidth="140" aheight="160" x="640" y="1001" width="140" height="160" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="a48a9211b03c407cbb288eded410b64a" iid="b61d22b25ba94c74a4a73e12d756729e" creation-date="11/05/2022 09:24:18" order-index="13" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="397" y1="1068" x2="46" y2="255" start-border-pos="0.8953125" end-border-pos="0.941265060240964" start-local-pos="67" end-local-pos="59" name-position="0,20">
- <points>
- <point x="397" y="1068" />
- <point x="-4" y="578" />
- <point x="46" y="255" />
- </points>
- </layout>
- <relation from="979e2dd2651742e08af31f818c22bf4e" from-iid="4be9c584480042c18525567fede0988e" from-field="af9002db56cf14129b96aa8a533353459288" to="e50f79968a404d3fbb33f4a02fa3b572" to-iid="650877ac46234db3b6eaebe1730487f3" to-field="aeda82a68426646d3a6cfa276db9bd56f255" />
- </item>
- <item id="de25be4a0e78494f885762b863143fd6" iid="0cb2e30a53f948de9705e964b9ddc626" creation-date="11/05/2022 09:25:11" order-index="14" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="straight" lock-start-point="true" lock-to-fields="true" auto-path="" x1="640" y1="1068" x2="349" y2="254" start-border-pos="0.8953125" end-border-pos="0.308734939759036" start-local-pos="67" end-local-pos="58" name-position="0,20">
- <points>
- <point x="640" y="1068" />
- <point x="349" y="254" />
- </points>
- </layout>
- <relation from="1596d482602d4447b90d648ed5031bb4" from-iid="0a741e375b0447b39b7312de458e5700" from-field="a1852ccbbf7aa4e3994563945086ea602887" to="e50f79968a404d3fbb33f4a02fa3b572" to-iid="650877ac46234db3b6eaebe1730487f3" to-field="aeda82a68426646d3a6cfa276db9bd56f255" />
- </item>
- <item id="7e382f0a73dd4e12b0db78aea55eb53b" iid="e54512e850ec437e821ff92e642823d7" creation-date="11/05/2022 09:25:51" order-index="15" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="537" y1="1105" x2="867" y2="550" start-border-pos="0.4125" end-border-pos="0.945429104477612" start-local-pos="104" end-local-pos="58" name-position="0,20">
- <points>
- <point x="537" y="1105" />
- <point x="867" y="550" />
- </points>
- </layout>
- <relation from="979e2dd2651742e08af31f818c22bf4e" from-iid="4be9c584480042c18525567fede0988e" from-field="ac565ef6d613e4ce395193ba85470dd24288" to="84a3ecb6b97b4e9cbcf5d8255039f80c" to-iid="e5295bc500524045bec12462bb4bf306" to-field="aeedb6cafa13c432289059d4aeee86fbf868" />
- </item>
- <item id="4c112af66ef746a3897a3e2a89b04793" iid="9f9cb55162264293932c82ef14cfccfc" creation-date="11/05/2022 09:26:21" order-index="16" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-to-fields="true" auto-path="" x1="780" y1="1105" x2="1210" y2="570" start-border-pos="0.4125" end-border-pos="0.941265060240964" start-local-pos="104" end-local-pos="59" name-position="0,20">
- <points>
- <point x="780" y="1105" />
- <point x="1210" y="570" />
- </points>
- </layout>
- <relation from="1596d482602d4447b90d648ed5031bb4" from-iid="0a741e375b0447b39b7312de458e5700" from-field="a743bc958b32142279f0be7a53e28a40f887" to="cb80b20360f340559de7775b16dcf14f" to-iid="0699c36719a449eaa54119a347bbcfad" to-field="ab12dbe3ddb0e44da817555c631a0bcdd360" />
- </item>
- <item id="ccc94b03e9f14adf85defc647f594921" iid="fd3ea7c46e3148d5aaa1b21aaba2be5d" creation-date="11/05/2022 09:28:10" order-index="17" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="1074" y1="710" x2="1210" y2="570" start-border-pos="0.453358208955224" end-border-pos="0.941265060240964" start-local-pos="218" end-local-pos="59" name-position="0,20">
- <points>
- <point x="1074" y="710" />
- <point x="1210" y="570" />
- </points>
- </layout>
- <relation from="84a3ecb6b97b4e9cbcf5d8255039f80c" from-iid="e5295bc500524045bec12462bb4bf306" from-field="ab59af341336049cab67540f6403cce1425" to="cb80b20360f340559de7775b16dcf14f" to-iid="0699c36719a449eaa54119a347bbcfad" to-field="ab12dbe3ddb0e44da817555c631a0bcdd360" />
- </item>
- </layer>
- </diagram>
- </model>
- <model id="pf57f34439eda4ac6afd78999af5cbf01_478287017" name="Customer" namespace="" order-index="3" expanded="true">
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 04:31:12</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models />
- <diagram type="entity-relationship" id="p5a74a7511e1f4e77b1be5b12283df6eb_762285763" name="Customer" order-index="1" uid="" name-style="" auto-routed-paths="false" default-line-style="default" view-location="0,80">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author />
- </authors>
- <description />
- <creation-date>11/06/2022 04:32:13</creation-date>
- <change-date>11/06/2022 05:34:48</change-date>
- <revision-count>0</revision-count>
- <version>1.0.0.0</version>
- </meta>
- <abstract-items>
- <item id="6037f78c46de439abe802ae4987eae0a" cid="ENT010" type="erd-entity" name="Contact" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 04:33:28">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="6037f78c46de439abe802ae4987eae0a_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="PK_CONTACT_ID" description="" />
- <attributes>
- <attribute uid="a98d18fea9d1a42b994184da158fc0950524" cid="EA063" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Contact primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/06/2022 04:58:50" />
- <attribute uid="a4307f98d59024d239c75a7b0b51b82b5206" cid="EA078" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that contact belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 05:15:11" />
- <attribute uid="a7d91a9dcefc7413693b670bc1bade5b0933" cid="EA076" name="CustomerId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to customer that contact belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 05:02:32" />
- <attribute uid="ad7823ef420c14959941255703455b00c922" cid="EA075" name="Type" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Contact type (0-Email, 1-Address, 2-Phone, 3-SMS)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:59:28" />
- <attribute uid="a7f6c82b81e3643de950e2ad14b1843df524" cid="EA065" name="Caption" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="false" description="Contact heading caption." default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:58:50" />
- <attribute uid="a941ad6e8b3244400b3f191a62e8b88b1524" cid="EA066" name="Address" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="false" description="Main address value. If phone, email, sms stores email address or telephone number." default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:58:50" />
- <attribute uid="a064b94013c3c46fdb547215fb77e3ed2524" cid="EA067" name="Address1" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="true" description="Secondary address value." default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:58:50" />
- <attribute uid="a7df60cf2857946e9957c0adc8104966f524" cid="EA068" name="City" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="true" description="Contact city." default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:58:50" />
- <attribute uid="ad2e1266766e04710bff1b321e8b0eb88524" cid="EA069" name="ZIP" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="true" description="Contact ZIP code." default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:58:50" />
- <attribute uid="a25b21cc445814c56a26958245c40002c524" cid="EA070" name="CountryCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="5" foreign-key="false" primary-key="false" nullable="true" description="Contact country code." default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:58:50" />
- <attribute uid="a0656c09ec92a442197683462c76ae580525" cid="EA071" name="IsPreferred" type="bit" type-id="MsSql.bit" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Flag if Contact is preferred." default-value="0" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:58:50" />
- <attribute uid="a2a2d4b79ba1641c4a768434190f5367b525" cid="EA072" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:58:50" />
- <attribute uid="ab06e1cd4c24d47d9993c7db7f5e9245a525" cid="EA073" name="Modified" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record modified timestamp" default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:58:50" />
- <attribute uid="a124b70a289be40c492ca810315cec7c4525" cid="EA074" name="Modifier" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="true" description="Record modifier signature" default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:58:50" />
- </attributes>
- <indexes />
- </item>
- <item id="eabde8039f1144d4ac8b37265634e7c0" cid="ENT011" type="erd-entity" name="CustomerUser" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 04:47:49">
- <entity description="" />
- <attributes>
- <attribute uid="ae89f1fdaae12492fa306402501c3c612976" cid="EA061" name="CustomerId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to customer" default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:49:58" />
- <attribute uid="aaeb17bfca2fb4947829584b65b4e6b10887" cid="EA079" name="UserLoginName" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="true" primary-key="false" nullable="false" description="Reference to user" default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 05:16:01" />
- </attributes>
- <indexes />
- </item>
- <item id="edcd669d18f241ff8e95e71af2974e19" cid="REL028" type="erd-relationship" name="REL_CONTACT_CUSTOMER_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 05:02:37" from="6037f78c46de439abe802ae4987eae0a" to="f26e0b8a31254bdcbd487daf3b8eabbe">
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a7d91a9dcefc7413693b670bc1bade5b0933" to-attribute="a74daa4a768ac415a847eca4c642554a1556" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="8b63817a9750491bb98314f94a40c98b" cid="REL025" type="erd-relationship" name="REL_CUSTOMETUSER_CUSTOMER_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 04:50:07" from="eabde8039f1144d4ac8b37265634e7c0" to="f26e0b8a31254bdcbd487daf3b8eabbe">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="8b63817a9750491bb98314f94a40c98b_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="ae89f1fdaae12492fa306402501c3c612976" to-attribute="a74daa4a768ac415a847eca4c642554a1556" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="f26e0b8a31254bdcbd487daf3b8eabbe" cid="ENT009" type="erd-entity" name="Customer" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 04:33:13">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="f26e0b8a31254bdcbd487daf3b8eabbe_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="PK_CUSTOMER_ID" description="" />
- <attributes>
- <attribute uid="a74daa4a768ac415a847eca4c642554a1556" cid="EA050" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Setting primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/06/2022 04:45:20" />
- <attribute uid="a0e7ddd70f6f9496486d48fef69eaa83b615" cid="EA077" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that customer belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 05:14:22" />
- <attribute uid="a7537f36bf7aa4826bfe26c963469c068563" cid="EA052" name="Code" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Customer code. Main key to search." default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:45:20" />
- <attribute uid="abb8e025bee0347d7b48472a75eb7a88d563" cid="EA053" name="Name" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="false" description="Customer head name. For identification usage." default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:45:20" />
- <attribute uid="ae237383d83484f54ac671a6ef15a0983563" cid="EA054" name="TaxNumber" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="true" description="Customer tax number (business identifier)" default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:45:20" />
- <attribute uid="abafd0cde2a4f43e59644a0dbcd4128ec563" cid="EA055" name="VatNumber" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="true" description="Customer VAT number (VAT identification)" default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:45:20" />
- <attribute uid="a4ac887cd788e445aa6e0ee729606fbc5563" cid="EA056" name="VatIncluded" type="bit" type-id="MsSql.bit" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Flag if VAT calculation is allowed" default-value="1" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:45:20" />
- <attribute uid="a067a7adf464043cbb09f1cf23cf6848e564" cid="EA057" name="TaxCountryCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="5" foreign-key="false" primary-key="false" nullable="false" description="Tax country region code" default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:45:20" />
- <attribute uid="a0fe76048ae3d4d31a5410406d6e3aced564" cid="EA058" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:45:20" />
- <attribute uid="a1a514732fe0a41299acea54e01e2ab89564" cid="EA059" name="Modified" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record modified timestamp" default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:45:20" />
- <attribute uid="a0cdaf51863f6460b88cea00e3d9d6ac1564" cid="EA060" name="Modifier" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="true" description="Record modifier signature" default-value="" default-value-name="" auto-increment="false" creation-date="11/06/2022 04:45:20" />
- </attributes>
- <indexes>
- <index uid="ixf46aa2e3dbf545b78fdcb3f618ee4c1557" cid="ERI007" name="IDX_CUSTOMER_CODE" is-unique="true">
- <index-attributes>
- <index-attribute ref="a7537f36bf7aa4826bfe26c963469c068563" sort="Asc" non-key="false" />
- </index-attributes>
- </index>
- </indexes>
- </item>
- </abstract-items>
- <layer id="bc0cf88f894f471e9735c36fae37d2f4" name="Default" visible="true" enabled="true" locked="false">
- <item id="f26e0b8a31254bdcbd487daf3b8eabbe" iid="92beb9d8d43b41cfa0df0276c05b94c0" creation-date="11/06/2022 04:33:13" order-index="0" type="entity">
- <layout ax="187" ay="272" awidth="329" aheight="303" x="187" y="272" width="329" height="303" rotation-center="-94.5,-71.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="6037f78c46de439abe802ae4987eae0a" iid="34eacc91783a4559ba5cb017cefd6a8b" creation-date="11/06/2022 04:33:28" order-index="1" type="entity">
- <layout ax="820" ay="414" awidth="294" aheight="323" x="820" y="414" width="294" height="323" rotation-center="-77,-81.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="eabde8039f1144d4ac8b37265634e7c0" iid="381b944fe16d43139a6ec64b0dfc3845" creation-date="11/06/2022 04:47:49" order-index="3" type="entity">
- <layout ax="618" ay="737" awidth="140" aheight="160" x="618" y="737" width="140" height="160" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="8b63817a9750491bb98314f94a40c98b" iid="c58a71edec7f46c9987a1933ec0bd54c" creation-date="11/06/2022 04:50:07" order-index="4" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="618" y1="786" x2="516" y2="330" start-border-pos="0.9234375" end-border-pos="0.298267326732673" start-local-pos="49" end-local-pos="58" name-position="0,20">
- <points>
- <point x="618" y="786" />
- <point x="516" y="330" />
- </points>
- </layout>
- <relation from="eabde8039f1144d4ac8b37265634e7c0" from-iid="381b944fe16d43139a6ec64b0dfc3845" from-field="ae89f1fdaae12492fa306402501c3c612976" to="f26e0b8a31254bdcbd487daf3b8eabbe" to-iid="92beb9d8d43b41cfa0df0276c05b94c0" to-field="a74daa4a768ac415a847eca4c642554a1556" />
- </item>
- <item id="edcd669d18f241ff8e95e71af2974e19" iid="3017b653184d4554ac5d6c4bec901cf8" creation-date="11/06/2022 05:02:37" order-index="7" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="820" y1="510" x2="516" y2="330" start-border-pos="0.92530959752322" end-border-pos="0.298267326732673" start-local-pos="96" end-local-pos="58" name-position="0,20">
- <points>
- <point x="820" y="510" />
- <point x="516" y="330" />
- </points>
- </layout>
- <relation from="6037f78c46de439abe802ae4987eae0a" from-iid="34eacc91783a4559ba5cb017cefd6a8b" from-field="a7d91a9dcefc7413693b670bc1bade5b0933" to="f26e0b8a31254bdcbd487daf3b8eabbe" to-iid="92beb9d8d43b41cfa0df0276c05b94c0" to-field="a74daa4a768ac415a847eca4c642554a1556" />
- </item>
- </layer>
- </diagram>
- </model>
- <model id="p0a29b74ea64c48fa932311e21819b925_923014943" name="Notification" namespace="" order-index="4" expanded="true">
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/07/2022 05:45:25</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models />
- <diagram type="entity-relationship" id="pcd77863d94614dca9af3ca3aef2e3f8f_679580685" name="Notification" order-index="1" uid="" name-style="" auto-routed-paths="false" default-line-style="default" view-location="-72,0" zoom="0.588806">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author />
- </authors>
- <description />
- <creation-date>11/07/2022 05:46:28</creation-date>
- <change-date>11/09/2022 16:50:32</change-date>
- <revision-count>0</revision-count>
- <version>1.0.0.1</version>
- </meta>
- <abstract-items>
- <item id="diec4b218cb47746ceba64e207a912d06c1285" cid="ENT027" type="erd-entity" name="SentMessage" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:47:16">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="diec4b218cb47746ceba64e207a912d06c1285_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="PK_PENDINGMESSAGE_ID" description="" />
- <attributes>
- <attribute uid="af17178b2f2da4259ad84ba4ce46b2d62692" cid="EA088" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Pending queue primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/07/2022 05:57:03" />
- <attribute uid="a717473a4316a485fa55f9f554159fba7692" cid="EA089" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that pending queue belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 05:57:03" />
- <attribute uid="a3c52ee815f464913a1b0beafe018518b424" cid="EA241" name="Code" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="false" description="Unique message code in tenant scope" default-value="" default-value-name="" auto-increment="false" creation-date="11/09/2022 16:38:30" />
- <attribute uid="a6094ee8b363143e8b931207ece9f5620451" cid="EA119" name="ChannelType" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Channel type of outgoing message (0-email ,1-sms, 2-phone)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:48:18" />
- <attribute uid="ab9bbb38acb7a4b8895918270256eda68451" cid="EA120" name="Status" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record status (0-pending, 1-processing,2-expired)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:48:18" />
- <attribute uid="a86b38cc0407e480d8e099c0461afcc1c451" cid="EA121" name="AffinityCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="true" description="Affinity worker code" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:48:18" />
- <attribute uid="a8682dcc09a7a4e5790b231d6238aa53e570" cid="EA128" name="RecipientId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to message recipients" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:57:59" />
- <attribute uid="ad91f8f25c29a4c419325e2371407b77a211" cid="EA122" name="TemplateId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="true" description="Reference to message template" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:52:05" />
- <attribute uid="a4776f53499ec4245b23879f4afcb50e4211" cid="EA123" name="MessageDataId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to message data" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:52:05" />
- <attribute uid="a64859b62e51d4a4c815c52b81bbfb980211" cid="EA124" name="AttachmentDataId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="true" description="Reference to attachment data" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:52:05" />
- <attribute uid="ac653bd7bdef84c6d836c490c0e130315561" cid="EA244" name="Sent" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/09/2022 16:46:04" />
- <attribute uid="ac0f3fb3bfc854a79b8b81490ba9b979f850" cid="EA127" name="LastStatusChanged" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Last status change timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:57:08" />
- <attribute uid="ac36fe4320f484fffa9e960b6b98ec8ef940" cid="EA129" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:58:28" />
- </attributes>
- <indexes />
- </item>
- <item id="e3828a85b81e4dab9faf7fc35422c4f9" cid="ENT017" type="erd-entity" name="Template" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:48:48">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="e3828a85b81e4dab9faf7fc35422c4f9_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity description="" />
- <attributes>
- <attribute uid="a4b401b2d6fb249a68b6d657ea305cafe133" cid="EA082" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Template primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/07/2022 05:53:58" />
- <attribute uid="ad45fc7b3cb344392a07567b9c18ae712133" cid="EA083" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that template belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 05:53:58" />
- <attribute uid="a90018820b3224a61af3bacd975535958256" cid="EA105" name="Code" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="false" description="Template code. Main key to search." default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:14:06" />
- <attribute uid="a4315edfba5f14362beed8c223149955f256" cid="EA106" name="Description" type="nvarchar" type-id="MsSql.nvarchar" type-size="500" foreign-key="false" primary-key="false" nullable="true" description="Template description" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:14:06" />
- <attribute uid="aa713e64031cf4aa1b48f4f47443375bf256" cid="EA107" name="Type" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Template type (t4)" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:14:06" />
- <attribute uid="a36550b7482004518ab6f0020cbc58f50256" cid="EA108" name="Content" type="ntext" type-id="MsSql.ntext" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Template content" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:14:06" />
- <attribute uid="ae89dd81299ab44549f393ab8bd786e2c903" cid="EA109" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:15:12" />
- <attribute uid="a08301ac8df4b472dab22b4c42b04237f903" cid="EA110" name="Modified" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record modified timestamp" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:15:12" />
- <attribute uid="a58eeeda01e9d4cd49098aa6996e8e053903" cid="EA111" name="Modifier" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="true" description="Record modifier signature" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:15:12" />
- </attributes>
- <indexes />
- </item>
- <item id="4543725efd8340b38d428f58e0277be9" cid="ENT018" type="erd-entity" name="MessageData" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:49:05">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="4543725efd8340b38d428f58e0277be9_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity description="" />
- <attributes>
- <attribute uid="ab319e15e96714219b67ec69abcc28699709" cid="EA084" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="MessageData primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/07/2022 05:55:41" />
- <attribute uid="ae0e600d8454946b09900883e30e593c0709" cid="EA085" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that message data belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 05:55:41" />
- <attribute uid="aa1bd25134e4947e881d685b1a9b538b2308" cid="EA098" name="ParentId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to heading record" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 05:59:37" />
- <attribute uid="afc84b291ebcf4e1c9d11fee70ad9b12d650" cid="EA101" name="SequenceNo" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Ordinal sequence number of processing related records" default-value="0" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:04:23" />
- <attribute uid="aa92d85c6ded447bf8895419f5e580d4a846" cid="EA112" name="Code" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="false" description="Data code. Main key to search." default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:16:51" />
- <attribute uid="a79b2fd7caede487ca2df93591951aa9e846" cid="EA113" name="ValueTypeQualified" type="nvarchar" type-id="MsSql.nvarchar" type-size="500" foreign-key="false" primary-key="false" nullable="false" description="Qualified name of value type" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:16:51" />
- <attribute uid="a9ef0f1f63f074d1581df39ca4e61753e846" cid="EA114" name="Value" type="nvarchar" type-id="MsSql.nvarchar" type-size="500" foreign-key="false" primary-key="false" nullable="true" description="Data value" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:16:51" />
- </attributes>
- <indexes />
- </item>
- <item id="b831317571014df9bb68c68ef4fd6bed" cid="REL037" type="erd-relationship" name="REL_PENDINGM_MESSAGEATTACHMENT_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 08:18:13" from="5e7fe86b6ebe45cd8c74f976766c0f5b" to="0072a4a831c1432ea145f94c46dc3fc1">
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a64859b62e51d4a4c815c52b81bbfb980211" to-attribute="a70e0ddc6a10c48bc94ac632c58290f27285" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="d4f6574c5e094b18a3468cb20d94cf63" cid="REL033" type="erd-relationship" name="REL_MESSAGEATTACHMENT_MESSAGEATTACHMENT_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 06:01:33" from="0072a4a831c1432ea145f94c46dc3fc1" to="0072a4a831c1432ea145f94c46dc3fc1">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="d4f6574c5e094b18a3468cb20d94cf63_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="0..1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a4a7b28de2cf7466080e37a27ea669473260" to-attribute="a70e0ddc6a10c48bc94ac632c58290f27285" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="524242499ba64b71bf6ad7a7997f2fbf" cid="REL066" type="erd-relationship" name="REL_FAILM_TEMPLATE_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:49:50" from="di183a33fee764488f98900f17a89993883707" to="e3828a85b81e4dab9faf7fc35422c4f9">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="524242499ba64b71bf6ad7a7997f2fbf_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="ad91f8f25c29a4c419325e2371407b77a211" to-attribute="a4b401b2d6fb249a68b6d657ea305cafe133" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="03e217a092cc4bf5810435b06ab7788e" cid="REL069" type="erd-relationship" name="REL_FAILM_MESSAGEATTACHMENT_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:50:32" from="di183a33fee764488f98900f17a89993883707" to="0072a4a831c1432ea145f94c46dc3fc1">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="03e217a092cc4bf5810435b06ab7788e_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a64859b62e51d4a4c815c52b81bbfb980211" to-attribute="a70e0ddc6a10c48bc94ac632c58290f27285" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="di183a33fee764488f98900f17a89993883707" cid="ENT028" type="erd-entity" name="FailMessage" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:47:16">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="5e7fe86b6ebe45cd8c74f976766c0f5b_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="PK_PENDINGMESSAGE_ID" description="" />
- <attributes>
- <attribute uid="af17178b2f2da4259ad84ba4ce46b2d62692" cid="EA088" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Pending queue primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/07/2022 05:57:03" />
- <attribute uid="a717473a4316a485fa55f9f554159fba7692" cid="EA089" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that pending queue belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 05:57:03" />
- <attribute uid="a3c52ee815f464913a1b0beafe018518b424" cid="EA241" name="Code" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="false" description="Unique message code in tenant scope" default-value="" default-value-name="" auto-increment="false" creation-date="11/09/2022 16:38:30" />
- <attribute uid="a6094ee8b363143e8b931207ece9f5620451" cid="EA119" name="ChannelType" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Channel type of outgoing message (0-email ,1-sms, 2-phone)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:48:18" />
- <attribute uid="ab9bbb38acb7a4b8895918270256eda68451" cid="EA120" name="Status" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record status (0-pending, 1-processing,2-expired)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:48:18" />
- <attribute uid="a86b38cc0407e480d8e099c0461afcc1c451" cid="EA121" name="AffinityCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="true" description="Affinity worker code" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:48:18" />
- <attribute uid="a8682dcc09a7a4e5790b231d6238aa53e570" cid="EA128" name="RecipientId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to message recipients" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:57:59" />
- <attribute uid="ad91f8f25c29a4c419325e2371407b77a211" cid="EA122" name="TemplateId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="true" description="Reference to message template" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:52:05" />
- <attribute uid="a4776f53499ec4245b23879f4afcb50e4211" cid="EA123" name="MessageDataId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to message data" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:52:05" />
- <attribute uid="a64859b62e51d4a4c815c52b81bbfb980211" cid="EA124" name="AttachmentDataId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="true" description="Reference to attachment data" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:52:05" />
- <attribute uid="a24967604c57d47ef868b1fd0f045b204969" cid="EA242" name="ErrorMessage" type="nvarchar" type-id="MsSql.nvarchar" type-size="500" foreign-key="false" primary-key="false" nullable="true" description="Error message" default-value="" default-value-name="" auto-increment="false" creation-date="11/09/2022 16:43:29" />
- <attribute uid="a1e2f63fb9b0942c190ad857550f9a2a8617" cid="EA243" name="Sent" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/09/2022 16:43:30" />
- <attribute uid="ac0f3fb3bfc854a79b8b81490ba9b979f850" cid="EA127" name="LastStatusChanged" type="datetime (MsSql.datetime)" type-id="datetime (MsSql.datetime)" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Last status change timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:57:08" />
- <attribute uid="ac36fe4320f484fffa9e960b6b98ec8ef940" cid="EA129" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:58:28" />
- </attributes>
- <indexes />
- </item>
- <item id="326713af4d5e4ee781d1418d33f11f26" cid="REL035" type="erd-relationship" name="REL_RENDINGM_TEMPLATE_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 08:16:47" from="5e7fe86b6ebe45cd8c74f976766c0f5b" to="e3828a85b81e4dab9faf7fc35422c4f9">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="326713af4d5e4ee781d1418d33f11f26_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="ad91f8f25c29a4c419325e2371407b77a211" to-attribute="a4b401b2d6fb249a68b6d657ea305cafe133" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="c05781b8df36488a96d7bac1997b3bec" cid="ENT016" type="erd-entity" name="Recipient" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:48:37">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="c05781b8df36488a96d7bac1997b3bec_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity description="" />
- <attributes>
- <attribute uid="a5ada734fd06848df809dfb8f1ba55e45192" cid="EA080" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Recipient primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/07/2022 05:53:42" />
- <attribute uid="a8f2b6e170ea6491da1b00cedf8b7176d199" cid="EA081" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that recipient belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 05:53:42" />
- <attribute uid="a52fac41d983c4d9dbcc38971c6e896a038" cid="EA096" name="ParentId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="true" description="Reference to heading record" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 05:58:40" />
- <attribute uid="ae13600bbc1f64289ad35731fbac8c8f9122" cid="EA100" name="SequenceNo" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Ordinal sequence number of processing related records" default-value="0" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:02:30" />
- <attribute uid="a1592a39172b647b1a7903715ec3fe6e2944" cid="EA103" name="BranchType" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Recipient branch (To - 0, CC - 1, BCC - 2)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:10:36" />
- <attribute uid="a7896a0bff218438b8bcb78828930fca0946" cid="EA104" name="Target" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="false" description="Address, Phone number, account name" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:10:36" />
- </attributes>
- <indexes />
- </item>
- <item id="f605dccc5f36404cb1743956890011ec" cid="REL067" type="erd-relationship" name="REL_FAILM_MESSAGEDATA_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:50:06" from="di183a33fee764488f98900f17a89993883707" to="4543725efd8340b38d428f58e0277be9">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="f605dccc5f36404cb1743956890011ec_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a4776f53499ec4245b23879f4afcb50e4211" to-attribute="ab319e15e96714219b67ec69abcc28699709" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="8327054c53b940d8a552ba01b491269d" cid="REL065" type="erd-relationship" name="REL_FAILM_RECIPIENT_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:49:29" from="di183a33fee764488f98900f17a89993883707" to="c05781b8df36488a96d7bac1997b3bec">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="8327054c53b940d8a552ba01b491269d_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a8682dcc09a7a4e5790b231d6238aa53e570" to-attribute="a5ada734fd06848df809dfb8f1ba55e45192" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="532c64db0bf7449f96e4fe618aacf84d" cid="REL061" type="erd-relationship" name="REL_SENTM_RECIPIENT_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:46:22" from="diec4b218cb47746ceba64e207a912d06c1285" to="c05781b8df36488a96d7bac1997b3bec">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="532c64db0bf7449f96e4fe618aacf84d_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a8682dcc09a7a4e5790b231d6238aa53e570" to-attribute="a5ada734fd06848df809dfb8f1ba55e45192" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="4420d4603b6843f6a428c91dbc417092" cid="REL030" type="erd-relationship" name="REL_RECIPIENT_RECIPIENT_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:59:50" from="c05781b8df36488a96d7bac1997b3bec" to="c05781b8df36488a96d7bac1997b3bec">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="4420d4603b6843f6a428c91dbc417092_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="0..1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a52fac41d983c4d9dbcc38971c6e896a038" to-attribute="a5ada734fd06848df809dfb8f1ba55e45192" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="10422ec9174448e18e212feb3035374a" cid="REL032" type="erd-relationship" name="REL_MESSAGEDATA_MESSAGEDATA_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 06:00:48" from="4543725efd8340b38d428f58e0277be9" to="4543725efd8340b38d428f58e0277be9">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="10422ec9174448e18e212feb3035374a_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="0..1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="aa1bd25134e4947e881d685b1a9b538b2308" to-attribute="ab319e15e96714219b67ec69abcc28699709" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="b1f9234a88054ba4a48fc3a871dc02bc" cid="REL064" type="erd-relationship" name="REL_SENTM_MESSAGEATTACHMENT_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:47:26" from="diec4b218cb47746ceba64e207a912d06c1285" to="0072a4a831c1432ea145f94c46dc3fc1">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="b1f9234a88054ba4a48fc3a871dc02bc_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a64859b62e51d4a4c815c52b81bbfb980211" to-attribute="a70e0ddc6a10c48bc94ac632c58290f27285" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="b89c0c4f0336459d876bf4ace3a630cb" cid="REL062" type="erd-relationship" name="REL_SENTM_TEMPLATE_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:46:45" from="diec4b218cb47746ceba64e207a912d06c1285" to="e3828a85b81e4dab9faf7fc35422c4f9">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="b89c0c4f0336459d876bf4ace3a630cb_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="ad91f8f25c29a4c419325e2371407b77a211" to-attribute="a4b401b2d6fb249a68b6d657ea305cafe133" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="0072a4a831c1432ea145f94c46dc3fc1" cid="ENT019" type="erd-entity" name="MessageAttachment" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:49:25">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="0072a4a831c1432ea145f94c46dc3fc1_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity description="" />
- <attributes>
- <attribute uid="a70e0ddc6a10c48bc94ac632c58290f27285" cid="EA086" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="MessageAttachment primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/07/2022 05:56:05" />
- <attribute uid="a437d5b7654324fada2dde9ee5355809f285" cid="EA087" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that message attachment belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 05:56:05" />
- <attribute uid="a4a7b28de2cf7466080e37a27ea669473260" cid="EA099" name="ParentId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to heading record" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 05:59:42" />
- <attribute uid="a7ddfbca20aff4ae89981230ca4351f9567" cid="EA102" name="SequenceNo" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Ordinal sequence number of processing related records" default-value="0" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:04:39" />
- <attribute uid="aa5155ff34ccb474798423420366f18f3149" cid="EA115" name="Name" type="nvarchar" type-id="MsSql.nvarchar" type-size="250" foreign-key="false" primary-key="false" nullable="false" description="Attachment file name" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:20:08" />
- <attribute uid="a4cb5b9bf01f041b89d807e9147c0590c149" cid="EA116" name="ContentLength" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Attachment content length" default-value="0" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:20:08" />
- <attribute uid="a3dbd43b906554325a8c361ade4dbb5c2149" cid="EA117" name="ContentType" type="varchar" type-id="MsSql.varchar" type-size="200" foreign-key="false" primary-key="false" nullable="false" description="Attachment content type" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:20:08" />
- <attribute uid="ae6bb274fc0c64f05afa3a903430d6626149" cid="EA118" name="Content" type="binary" type-id="MsSql.binary" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Attachment content" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 06:20:08" />
- </attributes>
- <indexes />
- </item>
- <item id="1d8fc1524cbc4062990a125ee00dceae" cid="REL036" type="erd-relationship" name="REL_PENDINGM_MESSAGEDATA_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 08:17:36" from="5e7fe86b6ebe45cd8c74f976766c0f5b" to="4543725efd8340b38d428f58e0277be9">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="1d8fc1524cbc4062990a125ee00dceae_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a4776f53499ec4245b23879f4afcb50e4211" to-attribute="ab319e15e96714219b67ec69abcc28699709" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="6a2e5cc6de7c4d0384efda392236b8e2" cid="REL034" type="erd-relationship" name="REL_PENDINGM_RECIPIENT_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 08:16:07" from="5e7fe86b6ebe45cd8c74f976766c0f5b" to="c05781b8df36488a96d7bac1997b3bec">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="6a2e5cc6de7c4d0384efda392236b8e2_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a8682dcc09a7a4e5790b231d6238aa53e570" to-attribute="a5ada734fd06848df809dfb8f1ba55e45192" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="8f9c7abb18b949ff9b3f13aa8b75b5ce" cid="REL063" type="erd-relationship" name="REL_SENTM_MESSAGEDATA_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:47:04" from="diec4b218cb47746ceba64e207a912d06c1285" to="4543725efd8340b38d428f58e0277be9">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="8f9c7abb18b949ff9b3f13aa8b75b5ce_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a4776f53499ec4245b23879f4afcb50e4211" to-attribute="ab319e15e96714219b67ec69abcc28699709" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="5e7fe86b6ebe45cd8c74f976766c0f5b" cid="ENT013" type="erd-entity" name="PendingMessage" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:47:16">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="5e7fe86b6ebe45cd8c74f976766c0f5b_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="PK_PENDINGMESSAGE_ID" description="" />
- <attributes>
- <attribute uid="af17178b2f2da4259ad84ba4ce46b2d62692" cid="EA088" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Pending queue primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/07/2022 05:57:03" />
- <attribute uid="a717473a4316a485fa55f9f554159fba7692" cid="EA089" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that pending queue belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 05:57:03" />
- <attribute uid="a3c52ee815f464913a1b0beafe018518b424" cid="EA241" name="Code" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="false" description="Unique message code in tenant scope" default-value="" default-value-name="" auto-increment="false" creation-date="11/09/2022 16:38:30" />
- <attribute uid="a6094ee8b363143e8b931207ece9f5620451" cid="EA119" name="ChannelType" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Channel type of outgoing message (0-email ,1-sms, 2-phone)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:48:18" />
- <attribute uid="ab9bbb38acb7a4b8895918270256eda68451" cid="EA120" name="Status" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record status (0-pending, 1-processing,2-expired)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:48:18" />
- <attribute uid="a86b38cc0407e480d8e099c0461afcc1c451" cid="EA121" name="AffinityCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="true" description="Affinity worker code" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:48:18" />
- <attribute uid="a8682dcc09a7a4e5790b231d6238aa53e570" cid="EA128" name="RecipientId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to message recipients" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:57:59" />
- <attribute uid="ad91f8f25c29a4c419325e2371407b77a211" cid="EA122" name="TemplateId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="true" description="Reference to message template" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:52:05" />
- <attribute uid="a4776f53499ec4245b23879f4afcb50e4211" cid="EA123" name="MessageDataId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to message data" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:52:05" />
- <attribute uid="a64859b62e51d4a4c815c52b81bbfb980211" cid="EA124" name="AttachmentDataId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="true" description="Reference to attachment data" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:52:05" />
- <attribute uid="abf9a660399324855818e6d0f2b2723a2850" cid="EA125" name="StartFrom" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record processing from datetime" default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:57:08" />
- <attribute uid="a4a27656fc5d948b295e06ce96e412d9a850" cid="EA126" name="StartTo" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record processing to datetime. If overflow then record is expired." default-value="" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:57:08" />
- <attribute uid="ac0f3fb3bfc854a79b8b81490ba9b979f850" cid="EA127" name="LastStatusChanged" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Last status change timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:57:08" />
- <attribute uid="ac36fe4320f484fffa9e960b6b98ec8ef940" cid="EA129" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/07/2022 07:58:28" />
- </attributes>
- <indexes />
- </item>
- </abstract-items>
- <layer id="83a4e4aefb704bb48f6dab87118e71d8" name="Default" visible="true" enabled="true" locked="false">
- <item id="5e7fe86b6ebe45cd8c74f976766c0f5b" iid="c6d0f021d805452b9e88072b060d461d" creation-date="11/07/2022 05:47:16" order-index="1" type="entity">
- <layout ax="31" ay="178" awidth="326" aheight="347" x="31" y="178" width="312" height="347" rotation-center="86,-45.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="c05781b8df36488a96d7bac1997b3bec" iid="793bcf0dcd18437b8816c922ce31a7bc" creation-date="11/07/2022 05:48:37" order-index="4" type="entity">
- <layout ax="78.5" ay="1106" awidth="217" aheight="244" x="78.5" y="1106" width="217" height="244" rotation-center="12.5,42" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="e3828a85b81e4dab9faf7fc35422c4f9" iid="817246872e78479abf6fe1a2d7daff95" creation-date="11/07/2022 05:48:48" order-index="5" type="entity">
- <layout ax="509" ay="1116" awidth="181" aheight="244" x="509" y="1116" width="181" height="244" rotation-center="-20.5,42" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="4543725efd8340b38d428f58e0277be9" iid="1e8f33ade0754508adf0f9a30f2064bc" creation-date="11/07/2022 05:49:05" order-index="6" type="entity">
- <layout ax="1037" ay="1106" awidth="217" aheight="244" x="1037" y="1106" width="217" height="244" rotation-center="-38.5,42" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="0072a4a831c1432ea145f94c46dc3fc1" iid="41c88192251a43489cd946119fdaae38" creation-date="11/07/2022 05:49:25" order-index="7" type="entity">
- <layout ax="1450" ay="1116" awidth="256" aheight="271" x="1450" y="1116" width="256" height="271" rotation-center="-24,55.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="4420d4603b6843f6a428c91dbc417092" iid="9d9a3f4580e445e9a0c28d5d5ee8e3ae" creation-date="11/07/2022 05:59:50" order-index="8" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="78" y1="1220" x2="78" y2="1164" start-border-pos="0.882684426229508" end-border-pos="0.940061475409836" start-local-pos="114" end-local-pos="58" name-position="0,20">
- <points>
- <point x="78" y="1220" />
- <point x="28.5" y="1255" />
- <point x="28.5" y="1173" />
- <point x="78" y="1164" />
- </points>
- </layout>
- <relation from="c05781b8df36488a96d7bac1997b3bec" from-iid="793bcf0dcd18437b8816c922ce31a7bc" from-field="a52fac41d983c4d9dbcc38971c6e896a038" to="c05781b8df36488a96d7bac1997b3bec" to-iid="793bcf0dcd18437b8816c922ce31a7bc" to-field="a5ada734fd06848df809dfb8f1ba55e45192" />
- </item>
- <item id="10422ec9174448e18e212feb3035374a" iid="2ebaad67484e494899202e6f233a4a48" creation-date="11/07/2022 06:00:48" order-index="9" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="1037" y1="1220" x2="1037" y2="1164" start-border-pos="0.882684426229508" end-border-pos="0.940061475409836" start-local-pos="114" end-local-pos="58" name-position="0,20">
- <points>
- <point x="1037" y="1220" />
- <point x="982" y="1264" />
- <point x="982" y="1173" />
- <point x="1037" y="1164" />
- </points>
- </layout>
- <relation from="4543725efd8340b38d428f58e0277be9" from-iid="1e8f33ade0754508adf0f9a30f2064bc" from-field="aa1bd25134e4947e881d685b1a9b538b2308" to="4543725efd8340b38d428f58e0277be9" to-iid="1e8f33ade0754508adf0f9a30f2064bc" to-field="ab319e15e96714219b67ec69abcc28699709" />
- </item>
- <item id="d4f6574c5e094b18a3468cb20d94cf63" iid="82ea9d2b47b74d4292f942e7a09a133e" creation-date="11/07/2022 06:01:33" order-index="10" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="1450" y1="1212" x2="1450" y2="1174" start-border-pos="0.910977859778598" end-border-pos="0.946033210332103" start-local-pos="96" end-local-pos="58" name-position="0,20">
- <points>
- <point x="1450" y="1212" />
- <point x="1400" y="1257" />
- <point x="1400" y="1183" />
- <point x="1450" y="1174" />
- </points>
- </layout>
- <relation from="0072a4a831c1432ea145f94c46dc3fc1" from-iid="41c88192251a43489cd946119fdaae38" from-field="a4a7b28de2cf7466080e37a27ea669473260" to="0072a4a831c1432ea145f94c46dc3fc1" to-iid="41c88192251a43489cd946119fdaae38" to-field="a70e0ddc6a10c48bc94ac632c58290f27285" />
- </item>
- <item id="6a2e5cc6de7c4d0384efda392236b8e2" iid="267bfd3d4090490b8392ca7fa55373bb" creation-date="11/07/2022 08:16:07" order-index="11" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="357" y1="350" x2="78" y2="1164" start-border-pos="0.374279538904899" end-border-pos="0.940061475409836" start-local-pos="172" end-local-pos="58" name-position="0,20">
- <points>
- <point x="357" y="350" />
- <point x="78" y="1164" />
- </points>
- </layout>
- <relation from="5e7fe86b6ebe45cd8c74f976766c0f5b" from-iid="c6d0f021d805452b9e88072b060d461d" from-field="a8682dcc09a7a4e5790b231d6238aa53e570" to="c05781b8df36488a96d7bac1997b3bec" to-iid="793bcf0dcd18437b8816c922ce31a7bc" to-field="a5ada734fd06848df809dfb8f1ba55e45192" />
- </item>
- <item id="326713af4d5e4ee781d1418d33f11f26" iid="c09534e3a7a140f4908432c31e36fc30" creation-date="11/07/2022 08:16:47" order-index="12" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="357" y1="370" x2="509" y2="1183" start-border-pos="0.387968299711816" end-border-pos="0.931352459016393" start-local-pos="192" end-local-pos="67" name-position="0,20">
- <points>
- <point x="357" y="370" />
- <point x="509" y="1183" />
- </points>
- </layout>
- <relation from="5e7fe86b6ebe45cd8c74f976766c0f5b" from-iid="c6d0f021d805452b9e88072b060d461d" from-field="ad91f8f25c29a4c419325e2371407b77a211" to="e3828a85b81e4dab9faf7fc35422c4f9" to-iid="817246872e78479abf6fe1a2d7daff95" to-field="a4b401b2d6fb249a68b6d657ea305cafe133" />
- </item>
- <item id="1d8fc1524cbc4062990a125ee00dceae" iid="b87b38d94b9c43d6b4747b569488309c" creation-date="11/07/2022 08:17:36" order-index="13" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="straight" lock-to-fields="true" auto-path="" x1="357" y1="388" x2="1037" y2="1164" start-border-pos="0.401657060518732" end-border-pos="0.940061475409836" start-local-pos="210" end-local-pos="58" name-position="0,20">
- <points>
- <point x="357" y="388" />
- <point x="1037" y="1164" />
- </points>
- </layout>
- <relation from="5e7fe86b6ebe45cd8c74f976766c0f5b" from-iid="c6d0f021d805452b9e88072b060d461d" from-field="a4776f53499ec4245b23879f4afcb50e4211" to="4543725efd8340b38d428f58e0277be9" to-iid="1e8f33ade0754508adf0f9a30f2064bc" to-field="ab319e15e96714219b67ec69abcc28699709" />
- </item>
- <item id="b831317571014df9bb68c68ef4fd6bed" iid="d278b55538db44d7b3c9ef3563873794" creation-date="11/07/2022 08:18:13" order-index="14" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="straight" lock-to-fields="true" auto-path="" x1="357" y1="408" x2="1450" y2="1174" start-border-pos="0.415345821325648" end-border-pos="0.946033210332103" start-local-pos="230" end-local-pos="58" name-position="0,20">
- <points>
- <point x="357" y="408" />
- <point x="1450" y="1174" />
- </points>
- </layout>
- <relation from="5e7fe86b6ebe45cd8c74f976766c0f5b" from-iid="c6d0f021d805452b9e88072b060d461d" from-field="a64859b62e51d4a4c815c52b81bbfb980211" to="0072a4a831c1432ea145f94c46dc3fc1" to-iid="41c88192251a43489cd946119fdaae38" to-field="a70e0ddc6a10c48bc94ac632c58290f27285" />
- </item>
- <item id="diec4b218cb47746ceba64e207a912d06c1285" iid="1dc74261438545dcb977d33d99f61d49" creation-date="11/07/2022 05:47:16" order-index="1" type="entity">
- <layout ax="664" ay="178" awidth="326" aheight="347" x="664" y="178" width="312" height="347" rotation-center="86,-45.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="di183a33fee764488f98900f17a89993883707" iid="6c8e600a418f4fce857824a2e34a49e2" creation-date="11/07/2022 05:47:16" order-index="1" type="entity">
- <layout ax="1192" ay="178" awidth="326" aheight="347" x="1192" y="178" width="312" height="347" rotation-center="86,-45.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="532c64db0bf7449f96e4fe618aacf84d" iid="95b3c2b7d0084a2e8171712ea713bfba" creation-date="11/09/2022 16:46:22" order-index="15" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="664" y1="351" x2="296" y2="1164" start-border-pos="0.875720461095101" end-border-pos="0.309938524590164" start-local-pos="173" end-local-pos="58" name-position="0,20">
- <points>
- <point x="664" y="351" />
- <point x="296" y="1164" />
- </points>
- </layout>
- <relation from="diec4b218cb47746ceba64e207a912d06c1285" from-iid="1dc74261438545dcb977d33d99f61d49" from-field="a8682dcc09a7a4e5790b231d6238aa53e570" to="c05781b8df36488a96d7bac1997b3bec" to-iid="793bcf0dcd18437b8816c922ce31a7bc" to-field="a5ada734fd06848df809dfb8f1ba55e45192" />
- </item>
- <item id="b89c0c4f0336459d876bf4ace3a630cb" iid="f210f7a0dd1a4258baa6db8deb532506" creation-date="11/09/2022 16:46:45" order-index="16" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="664" y1="370" x2="690" y2="1183" start-border-pos="0.862031700288184" end-border-pos="0.318647540983607" start-local-pos="192" end-local-pos="67" name-position="0,20">
- <points>
- <point x="664" y="370" />
- <point x="690" y="1183" />
- </points>
- </layout>
- <relation from="diec4b218cb47746ceba64e207a912d06c1285" from-iid="1dc74261438545dcb977d33d99f61d49" from-field="ad91f8f25c29a4c419325e2371407b77a211" to="e3828a85b81e4dab9faf7fc35422c4f9" to-iid="817246872e78479abf6fe1a2d7daff95" to-field="a4b401b2d6fb249a68b6d657ea305cafe133" />
- </item>
- <item id="8f9c7abb18b949ff9b3f13aa8b75b5ce" iid="ab24d0749dd8484a911134b36f0f0da6" creation-date="11/09/2022 16:47:04" order-index="17" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="990" y1="388" x2="1037" y2="1164" start-border-pos="0.401657060518732" end-border-pos="0.940061475409836" start-local-pos="210" end-local-pos="58" name-position="0,20">
- <points>
- <point x="990" y="388" />
- <point x="1037" y="1164" />
- </points>
- </layout>
- <relation from="diec4b218cb47746ceba64e207a912d06c1285" from-iid="1dc74261438545dcb977d33d99f61d49" from-field="a4776f53499ec4245b23879f4afcb50e4211" to="4543725efd8340b38d428f58e0277be9" to-iid="1e8f33ade0754508adf0f9a30f2064bc" to-field="ab319e15e96714219b67ec69abcc28699709" />
- </item>
- <item id="b1f9234a88054ba4a48fc3a871dc02bc" iid="e95af2a355024c2497362a15f495304c" creation-date="11/09/2022 16:47:26" order-index="18" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="990" y1="408" x2="1450" y2="1174" start-border-pos="0.415345821325648" end-border-pos="0.946033210332103" start-local-pos="230" end-local-pos="58" name-position="0,20">
- <points>
- <point x="990" y="408" />
- <point x="1450" y="1174" />
- </points>
- </layout>
- <relation from="diec4b218cb47746ceba64e207a912d06c1285" from-iid="1dc74261438545dcb977d33d99f61d49" from-field="a64859b62e51d4a4c815c52b81bbfb980211" to="0072a4a831c1432ea145f94c46dc3fc1" to-iid="41c88192251a43489cd946119fdaae38" to-field="a70e0ddc6a10c48bc94ac632c58290f27285" />
- </item>
- <item id="8327054c53b940d8a552ba01b491269d" iid="b827f5418a4d4259b7bae44204654b99" creation-date="11/09/2022 16:49:29" order-index="19" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="straight" lock-to-fields="true" auto-path="" x1="1192" y1="351" x2="296" y2="1164" start-border-pos="0.875720461095101" end-border-pos="0.309938524590164" start-local-pos="173" end-local-pos="58" name-position="0,20">
- <points>
- <point x="1192" y="351" />
- <point x="296" y="1164" />
- </points>
- </layout>
- <relation from="di183a33fee764488f98900f17a89993883707" from-iid="6c8e600a418f4fce857824a2e34a49e2" from-field="a8682dcc09a7a4e5790b231d6238aa53e570" to="c05781b8df36488a96d7bac1997b3bec" to-iid="793bcf0dcd18437b8816c922ce31a7bc" to-field="a5ada734fd06848df809dfb8f1ba55e45192" />
- </item>
- <item id="524242499ba64b71bf6ad7a7997f2fbf" iid="8fbe2b3b3b644a62a887580f8186bfda" creation-date="11/09/2022 16:49:50" order-index="20" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="straight" lock-to-fields="true" auto-path="" x1="1192" y1="370" x2="690" y2="1183" start-border-pos="0.862031700288184" end-border-pos="0.318647540983607" start-local-pos="192" end-local-pos="67" name-position="0,20">
- <points>
- <point x="1192" y="370" />
- <point x="690" y="1183" />
- </points>
- </layout>
- <relation from="di183a33fee764488f98900f17a89993883707" from-iid="6c8e600a418f4fce857824a2e34a49e2" from-field="ad91f8f25c29a4c419325e2371407b77a211" to="e3828a85b81e4dab9faf7fc35422c4f9" to-iid="817246872e78479abf6fe1a2d7daff95" to-field="a4b401b2d6fb249a68b6d657ea305cafe133" />
- </item>
- <item id="f605dccc5f36404cb1743956890011ec" iid="5f42c240a5994e48a11b5d05dd58de15" creation-date="11/09/2022 16:50:06" order-index="21" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="1192" y1="388" x2="1254" y2="1164" start-border-pos="0.848342939481268" end-border-pos="0.309938524590164" start-local-pos="210" end-local-pos="58" name-position="0,20">
- <points>
- <point x="1192" y="388" />
- <point x="1254" y="1164" />
- </points>
- </layout>
- <relation from="di183a33fee764488f98900f17a89993883707" from-iid="6c8e600a418f4fce857824a2e34a49e2" from-field="a4776f53499ec4245b23879f4afcb50e4211" to="4543725efd8340b38d428f58e0277be9" to-iid="1e8f33ade0754508adf0f9a30f2064bc" to-field="ab319e15e96714219b67ec69abcc28699709" />
- </item>
- <item id="03e217a092cc4bf5810435b06ab7788e" iid="6f2ed02c05c7419988a178f129254702" creation-date="11/09/2022 16:50:32" order-index="22" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="1518" y1="408" x2="1450" y2="1174" start-border-pos="0.415345821325648" end-border-pos="0.946033210332103" start-local-pos="230" end-local-pos="58" name-position="0,20">
- <points>
- <point x="1518" y="408" />
- <point x="1450" y="1174" />
- </points>
- </layout>
- <relation from="di183a33fee764488f98900f17a89993883707" from-iid="6c8e600a418f4fce857824a2e34a49e2" from-field="a64859b62e51d4a4c815c52b81bbfb980211" to="0072a4a831c1432ea145f94c46dc3fc1" to-iid="41c88192251a43489cd946119fdaae38" to-field="a70e0ddc6a10c48bc94ac632c58290f27285" />
- </item>
- </layer>
- </diagram>
- </model>
- <model id="p280b11935de843e8bd191248b1de1b75_596921977" name="Processor" namespace="" order-index="5" expanded="true">
- <meta>
- <authors>
- <author>Dalibor Votruba</author>
- </authors>
- <description />
- <creation-date>11/08/2022 05:19:56</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models />
- <diagram type="entity-relationship" id="pe1c118897a6a4125bb6136c46c1c33e7_611331886" name="Processor" order-index="1" uid="" auto-routed-paths="false" default-line-style="default" view-location="667,-118">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author>Dalibor Votruba</author>
- </authors>
- <description />
- <creation-date>11/08/2022 05:20:32</creation-date>
- <change-date>11/08/2022 08:47:08</change-date>
- <revision-count>0</revision-count>
- <version>1.0.0.1</version>
- </meta>
- <abstract-items>
- <item id="baadf4cdcea24736829d90875a341465" cid="REL054" type="erd-relationship" name="REL_QPENDING_STATUSHISTORY_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:36:45" from="1186fa6c2b034ce885edbb8091b46505" to="b765908bd63249ed98fd4b67aaffb808">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="baadf4cdcea24736829d90875a341465_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a82555026870245e8aa971296f36acf7c481" to-attribute="ac5647322066d4c8183f23cc7e844cf74395" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="6ef6b476716746e4aa738860504611bb" cid="REL053" type="erd-relationship" name="REL_QPENDING_DATA_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:36:11" from="1186fa6c2b034ce885edbb8091b46505" to="bfe30d52b9874c9e889784357be31a14">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="6ef6b476716746e4aa738860504611bb_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="ae810a56316134b858bb280ef494ca8d6481" to-attribute="a92ed274860e44bc5befe31a3ea2aed7b908" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="d3d616beebc24f36b6938945ae4354c4" cid="ENT022" type="erd-entity" name="QueueDone" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:22:32">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="d3d616beebc24f36b6938945ae4354c4_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="ID_QUEUEDONE_ID" description="" />
- <attributes>
- <attribute uid="a82230d98d8f2444da66784a543fe97cf880" cid="EA174" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Record identifier. Primary key" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:15:19" />
- <attribute uid="aedffb28a70b54824af70db83e90864fe766" cid="EA210" name="DataId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to data collection" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:33" />
- <attribute uid="ab0ed4682a90049478990dc6e20df5d11766" cid="EA211" name="StatusHistoryId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to status history collection" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:33" />
- <attribute uid="aca0b03fda09d4763acac4c42d36f812d766" cid="EA212" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that queue belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:33" />
- <attribute uid="af7841d63a1794cb7bc6a500e6c7ab4f9766" cid="EA213" name="Owner" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="false" description="Owner (abstract) key identifier. Usually entity code" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:33" />
- <attribute uid="aa9f03cc3cd8049dc95685cf13e29bd48700" cid="EA237" name="Priority" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Priority to process task. Higher value defines lower priority" default-value="100" default-value-name="" auto-increment="false" creation-date="11/09/2022 16:23:29" />
- <attribute uid="a609637132e554090bafa7b0bc6df1802784" cid="EA240" name="Provider" type="nvarchar" type-id="MsSql.nvarchar" type-size="500" foreign-key="false" primary-key="false" nullable="false" description="Provider to process task" default-value="" default-value-name="" auto-increment="false" creation-date="11/09/2022 16:25:16" />
- <attribute uid="a6977a13524874447991683cc4baf6d34766" cid="EA214" name="AffinityWorker" type="nvarchar" type-id="MsSql.nvarchar" type-size="64" foreign-key="false" primary-key="false" nullable="false" description="Owner worker identifier who processing task" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:33" />
- <attribute uid="ade94209ef21e4494ab027b7a38b8f15f766" cid="EA215" name="Status" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record status (Pending-0,Assigned-1,Working-2,Success-3,Failed-4,Expired-5,Deleted-6,Disabled-7)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:33" />
- <attribute uid="a7072a15fcf5c47d8ab1402af2c33c0f0568" cid="EA227" name="Attempt" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Attempt counter to process task" default-value="0" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:53:07" />
- <attribute uid="aa354236a2d014eeeb3bd48a788ee73bd766" cid="EA216" name="StartFrom" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record processing from datetime" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:33" />
- <attribute uid="ac2fcd304d07d43a3b9ac9a004cde3efa767" cid="EA217" name="StartTo" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record processing to datetime. If overflow then record is expired." default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:33" />
- <attribute uid="a534e44aab4554c769f91a44a17a3a34d767" cid="EA218" name="Started" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record started processing at" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:33" />
- <attribute uid="a451a88747d324b69af133243e2da1b64767" cid="EA219" name="Finished" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record finished at" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:33" />
- <attribute uid="ab721cc516fa94cbdb29978be35d942f3767" cid="EA220" name="LastStatusChanged" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Last status change timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:33" />
- <attribute uid="a8b07038ebe6d4b0fbac7bf5554f32cc8767" cid="EA221" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:33" />
- </attributes>
- <indexes />
- </item>
- <item id="f3b285db7dad4fbd9515f21df0e12282" cid="REL058" type="erd-relationship" name="REL_QFAILED_STATUSHISTORY_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:46:16" from="457b363c986e438795a41f1d41a698f1" to="b765908bd63249ed98fd4b67aaffb808">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="f3b285db7dad4fbd9515f21df0e12282_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a3ed1729f040d4f6292c662be0265480c38" to-attribute="ac5647322066d4c8183f23cc7e844cf74395" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="ce304959c0f14de896f808363c2b20f0" cid="REL052" type="erd-relationship" name="REL_STATUSHISTORY_STATUSHISTORY_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:33:22" from="b765908bd63249ed98fd4b67aaffb808" to="b765908bd63249ed98fd4b67aaffb808">
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a2077f43978cb42c39a412aa2b831da2b399" to-attribute="ac5647322066d4c8183f23cc7e844cf74395" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="457b363c986e438795a41f1d41a698f1" cid="ENT023" type="erd-entity" name="QueueFailed" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:22:59">
- <entity pk-constraint-name="ID_QUEUEFAILED_ID" description="" />
- <attributes>
- <attribute uid="ae7890dece3ce4af4af5198a59867913e481" cid="EA175" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Record identifier. Primary key" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:15:27" />
- <attribute uid="af516ce71d9c745e59606792d0ce364ff38" cid="EA198" name="DataId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to data collection" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:24" />
- <attribute uid="a3ed1729f040d4f6292c662be0265480c38" cid="EA199" name="StatusHistoryId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to status history collection" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:24" />
- <attribute uid="a3e58b8932607466087ee6c351c1c309038" cid="EA200" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that queue belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:24" />
- <attribute uid="ae6ff0f1204f5468c9c03721a733d74dc38" cid="EA201" name="Owner" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="false" description="Owner (abstract) key identifier. Usually entity code" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:24" />
- <attribute uid="a5785cf3b882b44a3ad482e24a6f2a82d383" cid="EA245" name="Priority" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Priority to process task. Higher value defines lower priority" default-value="100" default-value-name="" auto-increment="false" creation-date="01/09/2023 11:31:05" />
- <attribute uid="a221edf3ae9f44b60a5e4b63e8e38ef3f389" cid="EA246" name="Provider" type="nvarchar" type-id="MsSql.nvarchar" type-size="500" foreign-key="false" primary-key="false" nullable="false" description="Provider to process task" default-value="" default-value-name="" auto-increment="false" creation-date="01/09/2023 11:31:05" />
- <attribute uid="acd106be90b514e00b2e84a2f26df737438" cid="EA202" name="AffinityWorker" type="nvarchar" type-id="MsSql.nvarchar" type-size="64" foreign-key="false" primary-key="false" nullable="false" description="Owner worker identifier who processing task" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:24" />
- <attribute uid="a233e82f08879435c865aaacdf163f54b38" cid="EA203" name="Status" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record status (Pending-0,Assigned-1,Working-2,Success-3,Failed-4,Expired-5,Deleted-6,Disabled-7)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:24" />
- <attribute uid="a968b799009624c189780b1d7fa142f4d591" cid="EA226" name="Attempt" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Attempt counter to process task" default-value="0" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:52:57" />
- <attribute uid="af1f0227fc93344ebb9f704453bdf1c4e38" cid="EA204" name="StartFrom" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record processing from datetime" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:24" />
- <attribute uid="ae079f98e806941388bfde50116b2bdf638" cid="EA205" name="StartTo" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record processing to datetime. If overflow then record is expired." default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:24" />
- <attribute uid="ac0f24590c7bd4922a3b3c8cd6c86203c38" cid="EA206" name="Started" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record started processing at" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:24" />
- <attribute uid="a36d10a611d4b44018cde243907a8e39238" cid="EA207" name="Finished" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record finished at" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:24" />
- <attribute uid="ae68020eaa0c746ddafd2d5ab906235fa39" cid="EA208" name="LastStatusChanged" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Last status change timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:24" />
- <attribute uid="a5df478ad1596417aa948f15b61b1b6d939" cid="EA209" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:44:24" />
- </attributes>
- <indexes />
- </item>
- <item id="df4ed254302249d69a4c0ed1131d09cc" cid="ENT021" type="erd-entity" name="QueueProcessing" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:22:17">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="df4ed254302249d69a4c0ed1131d09cc_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="ID_QUEUEPROCESSING_ID" description="" />
- <attributes>
- <attribute uid="a85eab25a15bf443ca9d7d72d2be1bf9c464" cid="EA173" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Record identifier. Primary key" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:15:13" />
- <attribute uid="a7be97a141faa470a9dda9f7de8720f4d62" cid="EA186" name="DataId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to data collection" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:41:32" />
- <attribute uid="a7a00dd817c9c4cdcb7bdfefb05443cf562" cid="EA187" name="StatusHistoryId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to status history collection" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:41:32" />
- <attribute uid="a1b66de9956284271b515e1266895ab9762" cid="EA188" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that queue belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:41:32" />
- <attribute uid="a62d2722ff863474595c9013dd915318762" cid="EA189" name="Owner" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="false" description="Owner (abstract) key identifier. Usually entity code" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:41:32" />
- <attribute uid="a1d3d7acf3ec943f1a563183381c41803812" cid="EA236" name="Priority" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Priority to process task. Higher value defines lower priority" default-value="100" default-value-name="" auto-increment="false" creation-date="11/09/2022 16:23:12" />
- <attribute uid="a27177dd129844bf18904843e18e9ee9c25" cid="EA239" name="Provider" type="nvarchar" type-id="MsSql.nvarchar" type-size="500" foreign-key="false" primary-key="false" nullable="false" description="Provider to process task" default-value="" default-value-name="" auto-increment="false" creation-date="11/09/2022 16:25:05" />
- <attribute uid="a7a0278739bba4d0aa055480dafded21064" cid="EA190" name="AffinityWorker" type="nvarchar" type-id="MsSql.nvarchar" type-size="64" foreign-key="false" primary-key="false" nullable="false" description="Owner worker identifier who processing task" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:41:32" />
- <attribute uid="a24a227f88e154ce1b692056e83e58fc065" cid="EA191" name="Status" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record status (Pending-0,Assigned-1,Working-2,Success-3,Failed-4,Expired-5,Deleted-6,Disabled-7)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:41:32" />
- <attribute uid="a537b3cbc5670499ab23ae892014d0770105" cid="EA225" name="Attempt" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Attempt counter to process task" default-value="0" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:52:30" />
- <attribute uid="aeac27ef4b7df4f8ca3d6cb2cfd86e87365" cid="EA192" name="StartFrom" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record processing from datetime" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:41:32" />
- <attribute uid="a525c24f20ea340bbb5863071a99d1d1265" cid="EA193" name="StartTo" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record processing to datetime. If overflow then record is expired." default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:41:32" />
- <attribute uid="a4dee73393e074edaac5c241d104a312265" cid="EA194" name="Started" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record started processing at" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:41:32" />
- <attribute uid="af4d66a37988146b4b0475c52978d2bc565" cid="EA195" name="Finished" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record finished at" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:41:32" />
- <attribute uid="a3aa87a06bf18405aad7beea9f0ba972d65" cid="EA196" name="LastStatusChanged" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Last status change timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:41:32" />
- <attribute uid="a512e57f46c764e0fb3596db8641d194065" cid="EA197" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:41:32" />
- </attributes>
- <indexes />
- </item>
- <item id="9a7395ec0c17456db7ef4b014d6926d5" cid="REL060" type="erd-relationship" name="REL_QDONE_STATUSHISTORY_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:47:08" from="d3d616beebc24f36b6938945ae4354c4" to="b765908bd63249ed98fd4b67aaffb808">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="9a7395ec0c17456db7ef4b014d6926d5_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="ab0ed4682a90049478990dc6e20df5d11766" to-attribute="ac5647322066d4c8183f23cc7e844cf74395" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="1186fa6c2b034ce885edbb8091b46505" cid="ENT020" type="erd-entity" name="QueuePending" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:21:17">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="1186fa6c2b034ce885edbb8091b46505_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="ID_QUEUEPENDING_ID" description="" />
- <attributes>
- <attribute uid="a50e85c5d5aba467986af10541d9892cb196" cid="EA172" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Record identifier. Primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/08/2022 08:15:07" />
- <attribute uid="ae810a56316134b858bb280ef494ca8d6481" cid="EA181" name="DataId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to data collection" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:35:28" />
- <attribute uid="a82555026870245e8aa971296f36acf7c481" cid="EA182" name="StatusHistoryId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to status history collection" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:35:28" />
- <attribute uid="a7eb19fedb360425db2e3ecfc6a3778b5106" cid="EA185" name="TenantCode" type="nvarchar" type-id="MsSql.nvarchar" type-size="20" foreign-key="false" primary-key="false" nullable="false" description="Reference to tenant code that queue belongs" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:38:49" />
- <attribute uid="a9472d2259efe43d1987152a7ec82f719481" cid="EA183" name="Owner" type="nvarchar" type-id="MsSql.nvarchar" type-size="50" foreign-key="false" primary-key="false" nullable="false" description="Owner (abstract) key identifier. Usually entity code" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:35:28" />
- <attribute uid="a6ee34e6f17cf4db3a3aa76a451679788467" cid="EA235" name="Priority" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Priority to process task. Higher value defines lower priority" default-value="100" default-value-name="" auto-increment="false" creation-date="11/09/2022 16:21:26" />
- <attribute uid="a305e7b0eba4b4f1b919aaf4b621ecbc1962" cid="EA238" name="Provider" type="nvarchar" type-id="MsSql.nvarchar" type-size="500" foreign-key="false" primary-key="false" nullable="false" description="Provider to process task" default-value="" default-value-name="" auto-increment="false" creation-date="11/09/2022 16:24:55" />
- <attribute uid="a7993dbf41dc7416c9ec49aa7c8480b08481" cid="EA184" name="AffinityWorker" type="nvarchar" type-id="MsSql.nvarchar" type-size="64" foreign-key="false" primary-key="false" nullable="false" description="Owner worker identifier who processing task" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:35:28" />
- <attribute uid="a3df710c9455940c8b78a518d89e5dae7909" cid="EA176" name="Status" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record status (Pending-0,Assigned-1,Working-2,Success-3,Failed-4,Expired-5,Deleted-6,Disabled-7)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:26:16" />
- <attribute uid="a473958f2e30747a5ba69087f29c348e0909" cid="EA177" name="StartFrom" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record processing from datetime" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:26:16" />
- <attribute uid="ae1240b0d4d7a4ff68fdf72debb2e9ba3910" cid="EA178" name="StartTo" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Record processing to datetime. If overflow then record is expired." default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:26:16" />
- <attribute uid="a1a60981534b642c98ad72a3bd1b494f6910" cid="EA179" name="LastStatusChanged" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Last status change timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:26:16" />
- <attribute uid="aaf598db42986496cba4287b01601b457910" cid="EA180" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:26:16" />
- </attributes>
- <indexes />
- </item>
- <item id="d073cec886784d5f925a27029b6df6c8" cid="REL055" type="erd-relationship" name="REL_QPROCESSING_DATA_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:42:00" from="df4ed254302249d69a4c0ed1131d09cc" to="bfe30d52b9874c9e889784357be31a14">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="d073cec886784d5f925a27029b6df6c8_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a7be97a141faa470a9dda9f7de8720f4d62" to-attribute="a92ed274860e44bc5befe31a3ea2aed7b908" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="24978a7816954c8b9b404b7f4eb78dd4" cid="REL057" type="erd-relationship" name="REL_QFAILED_DATA_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:45:53" from="457b363c986e438795a41f1d41a698f1" to="bfe30d52b9874c9e889784357be31a14">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="24978a7816954c8b9b404b7f4eb78dd4_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="af516ce71d9c745e59606792d0ce364ff38" to-attribute="a92ed274860e44bc5befe31a3ea2aed7b908" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="87d93db58f7944799690a82b5062972d" cid="REL056" type="erd-relationship" name="REL_QPROCESSING_STATUSHISTORY_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:42:38" from="df4ed254302249d69a4c0ed1131d09cc" to="b765908bd63249ed98fd4b67aaffb808">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="87d93db58f7944799690a82b5062972d_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a7a00dd817c9c4cdcb7bdfefb05443cf562" to-attribute="ac5647322066d4c8183f23cc7e844cf74395" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="b765908bd63249ed98fd4b67aaffb808" cid="ENT024" type="erd-entity" name="StatusHistory" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:24:36">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="b765908bd63249ed98fd4b67aaffb808_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="IDX_STATUSHISTORY_ID" description="" />
- <attributes>
- <attribute uid="ac5647322066d4c8183f23cc7e844cf74395" cid="EA170" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Record identifier. Primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/08/2022 05:33:02" />
- <attribute uid="a2077f43978cb42c39a412aa2b831da2b399" cid="EA171" name="ParentId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to master (or group) record" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 05:33:02" />
- <attribute uid="add67fab5e48f4b8592edf0ffd038394b178" cid="EA222" name="Status" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record status (Pending-0,Assigned-1,Working-2,Success-3,Failed-4,Expired-5,Disable-6)" default-value="0" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:50:59" />
- <attribute uid="a578460f245774d50a2c71b9783d5daa8901" cid="EA228" name="Attempt" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="true" description="Actual attempt counter to process task" default-value="0" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:54:10" />
- <attribute uid="a90eb7b2796934e76b4b1273187e03279178" cid="EA223" name="ErrorMessage" type="nvarchar" type-id="MsSql.nvarchar" type-size="max" foreign-key="false" primary-key="false" nullable="true" description="Last error message" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:50:59" />
- <attribute uid="ad28b82e64399484aa97714fff8cfb190178" cid="EA224" name="Created" type="datetime" type-id="MsSql.datetime" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Record created timestamp" default-value="getdate()" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:50:59" />
- </attributes>
- <indexes />
- </item>
- <item id="5f5e1e7c91664cfab0dd92bc4fac353b" cid="REL051" type="erd-relationship" name="REL_DATA_DATA_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:31:17" from="bfe30d52b9874c9e889784357be31a14" to="bfe30d52b9874c9e889784357be31a14">
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="a7611878f0ff4494387434f3e311e1ed2468" to-attribute="a92ed274860e44bc5befe31a3ea2aed7b908" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="c74988046a6746bfba1cf5db75e432b8" cid="REL059" type="erd-relationship" name="REL_QDONE_DATA_ID" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:46:47" from="d3d616beebc24f36b6938945ae4354c4" to="bfe30d52b9874c9e889784357be31a14">
- <stereotypes>
- <stereotype name="relation" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="c74988046a6746bfba1cf5db75e432b8_relation_c" type="relation" ref="" />
- </stereotype-instances>
- <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
- <attribute-pairs>
- <attribute-pair from-attribute="aedffb28a70b54824af70db83e90864fe766" to-attribute="a92ed274860e44bc5befe31a3ea2aed7b908" />
- </attribute-pairs>
- </erd-relation>
- </item>
- <item id="bfe30d52b9874c9e889784357be31a14" cid="ENT025" type="erd-entity" name="QueueData" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:25:00">
- <stereotypes>
- <stereotype name="table" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="bfe30d52b9874c9e889784357be31a14_table_c" type="table" ref="" />
- </stereotype-instances>
- <entity pk-constraint-name="IDX_DATA_ID" description="" />
- <attributes>
- <attribute uid="a92ed274860e44bc5befe31a3ea2aed7b908" cid="EA168" name="Id" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="false" primary-key="true" nullable="false" description="Record identifier. Primary key" default-value="" default-value-name="" auto-increment="true" creation-date="11/08/2022 05:29:28" />
- <attribute uid="a7611878f0ff4494387434f3e311e1ed2468" cid="EA169" name="ParentId" type="bigint" type-id="MsSql.bigint" type-size="" foreign-key="true" primary-key="false" nullable="false" description="Reference to master (or group) record" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 05:29:40" />
- <attribute uid="aba1d6668ef9d47eeaab79bb6a9efcfd469" cid="EA229" name="Code" type="nvarchar" type-id="MsSql.nvarchar" type-size="100" foreign-key="false" primary-key="false" nullable="false" description="Data code. Main key to search." default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:55:19" />
- <attribute uid="aa9cb870010d04a1fb1673a5a6017e0c791" cid="EA234" name="IsInput" type="bit" type-id="MsSql.bit" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Defines if data is input value" default-value="0" default-value-name="" auto-increment="false" creation-date="11/08/2022 10:26:18" />
- <attribute uid="a65c26ab7165b44cfb88958e8accccfc2476" cid="EA233" name="SequenceNo" type="int" type-id="MsSql.int" type-size="" foreign-key="false" primary-key="false" nullable="false" description="Ordinal sequence number of processing related records" default-value="0" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:57:26" />
- <attribute uid="a2de9b4f6bbd54111a3056eade397a38469" cid="EA230" name="ValueTypeQualified" type="nvarchar" type-id="MsSql.nvarchar" type-size="500" foreign-key="false" primary-key="false" nullable="false" description="Qualified name of value type" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:55:19" />
- <attribute uid="aa1487c75ba1a4fb7bffea3c973c03c8b69" cid="EA231" name="Value" type="nvarchar" type-id="MsSql.nvarchar" type-size="500" foreign-key="false" primary-key="false" nullable="true" description="Data value" default-value="" default-value-name="" auto-increment="false" creation-date="11/08/2022 08:55:19" />
- </attributes>
- <indexes />
- </item>
- </abstract-items>
- <layer id="b33e4b4a89eb408db71b5b6ad0afa419" name="Default" visible="true" enabled="true" locked="false">
- <item id="1186fa6c2b034ce885edbb8091b46505" iid="3045330c452647eb96ae41e241799231" creation-date="11/08/2022 05:21:17" order-index="0" type="entity">
- <layout ax="72" ay="131" awidth="326" aheight="295" x="72" y="131" width="282" height="283" rotation-center="71,61.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="df4ed254302249d69a4c0ed1131d09cc" iid="418d0aa581c545cd81f9f0fe79d1e4fb" creation-date="11/08/2022 05:22:17" order-index="1" type="entity">
- <layout ax="410" ay="131" awidth="326" aheight="406" x="410" y="131" width="140" height="406" rotation-center="0,15.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="d3d616beebc24f36b6938945ae4354c4" iid="102df699a8284fc68f3e4e8953a82bd0" creation-date="11/08/2022 05:22:32" order-index="2" type="entity">
- <layout ax="382.5" ay="989" awidth="381" aheight="333" x="382.5" y="989" width="381" height="317" rotation-center="-120.5,-78.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="457b363c986e438795a41f1d41a698f1" iid="a5c5e513910642c5b0efb24fd9fc2b38" creation-date="11/08/2022 05:22:59" order-index="3" type="entity">
- <layout ax="1126" ay="549" awidth="326" aheight="333" x="1126" y="549" width="314" height="327" rotation-center="-82,-83.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="b765908bd63249ed98fd4b67aaffb808" iid="5b1c442bf5e94c6087e35b73f4616120" creation-date="11/08/2022 05:24:36" order-index="4" type="entity">
- <layout ax="147" ay="642" awidth="263" aheight="209" x="147" y="642" width="263" height="209" rotation-center="5.5,-23.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="bfe30d52b9874c9e889784357be31a14" iid="f6b988b16681472aabb064336c52e34a" creation-date="11/08/2022 05:25:00" order-index="5" type="entity">
- <layout ax="856" ay="290" awidth="467" aheight="209" x="856" y="290" width="467" height="209" rotation-center="-163.5,24.5" />
- <erd-entity show-nullability="true" />
- </item>
- <item id="5f5e1e7c91664cfab0dd92bc4fac353b" iid="58907e40cccd4fde943044c76d36bef2" creation-date="11/08/2022 05:31:17" order-index="6" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="856" y1="368" x2="856" y2="348" start-border-pos="0.907296650717703" end-border-pos="0.930023923444976" start-local-pos="78" end-local-pos="58" name-position="0,20">
- <points>
- <point x="856" y="368" />
- <point x="806" y="394" />
- <point x="806" y="357" />
- <point x="856" y="348" />
- </points>
- </layout>
- <relation from="bfe30d52b9874c9e889784357be31a14" from-iid="f6b988b16681472aabb064336c52e34a" from-field="a7611878f0ff4494387434f3e311e1ed2468" to="bfe30d52b9874c9e889784357be31a14" to-iid="f6b988b16681472aabb064336c52e34a" to-field="a92ed274860e44bc5befe31a3ea2aed7b908" />
- </item>
- <item id="ce304959c0f14de896f808363c2b20f0" iid="cd89ad803f0c4592a759f2a21cb171ba" creation-date="11/08/2022 05:33:22" order-index="7" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="147" y1="720" x2="147" y2="700" start-border-pos="0.907296650717703" end-border-pos="0.930023923444976" start-local-pos="78" end-local-pos="58" name-position="0,20">
- <points>
- <point x="147" y="720" />
- <point x="97" y="720" />
- <point x="97" y="700" />
- <point x="147" y="700" />
- </points>
- </layout>
- <relation from="b765908bd63249ed98fd4b67aaffb808" from-iid="5b1c442bf5e94c6087e35b73f4616120" from-field="a2077f43978cb42c39a412aa2b831da2b399" to="b765908bd63249ed98fd4b67aaffb808" to-iid="5b1c442bf5e94c6087e35b73f4616120" to-field="ac5647322066d4c8183f23cc7e844cf74395" />
- </item>
- <item id="6ef6b476716746e4aa738860504611bb" iid="ee0b08d96e10443b8f1c2c2ca02d51d9" creation-date="11/08/2022 08:36:11" order-index="8" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="true" auto-path="" x1="72" y1="208" x2="856" y2="348" start-border-pos="0.934322033898305" end-border-pos="0.930023923444976" start-local-pos="77" end-local-pos="58" name-position="0,20">
- <points>
- <point x="72" y="208" />
- <point x="22" y="454" />
- <point x="856" y="348" />
- </points>
- </layout>
- <relation from="1186fa6c2b034ce885edbb8091b46505" from-iid="3045330c452647eb96ae41e241799231" from-field="ae810a56316134b858bb280ef494ca8d6481" to="bfe30d52b9874c9e889784357be31a14" to-iid="f6b988b16681472aabb064336c52e34a" to-field="a92ed274860e44bc5befe31a3ea2aed7b908" />
- </item>
- <item id="baadf4cdcea24736829d90875a341465" iid="8580555f2cbd4d0eacc95f5e199edd21" creation-date="11/08/2022 08:36:45" order-index="9" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="398" y1="228" x2="147" y2="700" start-border-pos="0.331779661016949" end-border-pos="0.930023923444976" start-local-pos="97" end-local-pos="58" name-position="0,20">
- <points>
- <point x="398" y="228" />
- <point x="147" y="700" />
- </points>
- </layout>
- <relation from="1186fa6c2b034ce885edbb8091b46505" from-iid="3045330c452647eb96ae41e241799231" from-field="a82555026870245e8aa971296f36acf7c481" to="b765908bd63249ed98fd4b67aaffb808" to-iid="5b1c442bf5e94c6087e35b73f4616120" to-field="ac5647322066d4c8183f23cc7e844cf74395" />
- </item>
- <item id="d073cec886784d5f925a27029b6df6c8" iid="44f14da978be446e89655cc1450ecc10" creation-date="11/08/2022 08:42:00" order-index="10" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="736" y1="209" x2="856" y2="348" start-border-pos="0.297721674876847" end-border-pos="0.930023923444976" start-local-pos="78" end-local-pos="58" name-position="0,20">
- <points>
- <point x="736" y="209" />
- <point x="856" y="348" />
- </points>
- </layout>
- <relation from="df4ed254302249d69a4c0ed1131d09cc" from-iid="418d0aa581c545cd81f9f0fe79d1e4fb" from-field="a7be97a141faa470a9dda9f7de8720f4d62" to="bfe30d52b9874c9e889784357be31a14" to-iid="f6b988b16681472aabb064336c52e34a" to-field="a92ed274860e44bc5befe31a3ea2aed7b908" />
- </item>
- <item id="87d93db58f7944799690a82b5062972d" iid="e6990ac1e6e947eba0cff4b2437dd6eb" creation-date="11/08/2022 08:42:38" order-index="11" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="410" y1="227" x2="410" y2="700" start-border-pos="0.94057881773399" end-border-pos="0.319976076555024" start-local-pos="96" end-local-pos="58" name-position="0,20">
- <points>
- <point x="410" y="227" />
- <point x="410" y="700" />
- </points>
- </layout>
- <relation from="df4ed254302249d69a4c0ed1131d09cc" from-iid="418d0aa581c545cd81f9f0fe79d1e4fb" from-field="a7a00dd817c9c4cdcb7bdfefb05443cf562" to="b765908bd63249ed98fd4b67aaffb808" to-iid="5b1c442bf5e94c6087e35b73f4616120" to-field="ac5647322066d4c8183f23cc7e844cf74395" />
- </item>
- <item id="24978a7816954c8b9b404b7f4eb78dd4" iid="a496c8177b5547c99181c57b2dad60be" creation-date="11/08/2022 08:45:53" order-index="12" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="1126" y1="608" x2="1323" y2="348" start-border-pos="0.95533033033033" end-border-pos="0.319976076555024" start-local-pos="59" end-local-pos="58" name-position="0,20">
- <points>
- <point x="1126" y="608" />
- <point x="1323" y="348" />
- </points>
- </layout>
- <relation from="457b363c986e438795a41f1d41a698f1" from-iid="a5c5e513910642c5b0efb24fd9fc2b38" from-field="af516ce71d9c745e59606792d0ce364ff38" to="bfe30d52b9874c9e889784357be31a14" to-iid="f6b988b16681472aabb064336c52e34a" to-field="a92ed274860e44bc5befe31a3ea2aed7b908" />
- </item>
- <item id="f3b285db7dad4fbd9515f21df0e12282" iid="dcb349adc6f041298abbc5620dd1fb95" creation-date="11/08/2022 08:46:16" order-index="13" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="1126" y1="627" x2="410" y2="700" start-border-pos="0.941066066066066" end-border-pos="0.319976076555024" start-local-pos="78" end-local-pos="58" name-position="0,20">
- <points>
- <point x="1126" y="627" />
- <point x="410" y="700" />
- </points>
- </layout>
- <relation from="457b363c986e438795a41f1d41a698f1" from-iid="a5c5e513910642c5b0efb24fd9fc2b38" from-field="a3ed1729f040d4f6292c662be0265480c38" to="b765908bd63249ed98fd4b67aaffb808" to-iid="5b1c442bf5e94c6087e35b73f4616120" to-field="ac5647322066d4c8183f23cc7e844cf74395" />
- </item>
- <item id="c74988046a6746bfba1cf5db75e432b8" iid="054dac20a3be4cdaab4afd8f302fd76c" creation-date="11/08/2022 08:46:47" order-index="14" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="oblique" lock-to-fields="true" auto-path="" x1="764" y1="1066" x2="856" y2="348" start-border-pos="0.308183183183183" end-border-pos="0.930023923444976" start-local-pos="77" end-local-pos="58" name-position="0,20">
- <points>
- <point x="764" y="1066" />
- <point x="856" y="348" />
- </points>
- </layout>
- <relation from="d3d616beebc24f36b6938945ae4354c4" from-iid="102df699a8284fc68f3e4e8953a82bd0" from-field="aedffb28a70b54824af70db83e90864fe766" to="bfe30d52b9874c9e889784357be31a14" to-iid="f6b988b16681472aabb064336c52e34a" to-field="a92ed274860e44bc5befe31a3ea2aed7b908" />
- </item>
- <item id="9a7395ec0c17456db7ef4b014d6926d5" iid="4428ca3a33934607b6db8d0aed01fc2b" creation-date="11/08/2022 08:47:08" order-index="15" type="relation">
- <layout start-role-position="25,15" end-role-position="25,-15" line-style="straight" lock-to-fields="true" auto-path="" x1="382" y1="1086" x2="410" y2="700" start-border-pos="0.927552552552553" end-border-pos="0.319976076555024" start-local-pos="97" end-local-pos="58" name-position="0,20">
- <points>
- <point x="382" y="1086" />
- <point x="410" y="700" />
- </points>
- </layout>
- <relation from="d3d616beebc24f36b6938945ae4354c4" from-iid="102df699a8284fc68f3e4e8953a82bd0" from-field="ab0ed4682a90049478990dc6e20df5d11766" to="b765908bd63249ed98fd4b67aaffb808" to-iid="5b1c442bf5e94c6087e35b73f4616120" to-field="ac5647322066d4c8183f23cc7e844cf74395" />
- </item>
- </layer>
- </diagram>
- </model>
- </sub-models>
- </model>
- <model id="pb4ba914fc4fe4880821bbf7c9406e98b_916368183" name="Implementation" namespace="" order-index="3" expanded="true">
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 16:42:24</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models>
- <model id="p281a02d1627a44b68d7b4f5f9b9e6e6f_506610107" name="Modules" namespace="" order-index="1" expanded="true">
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 16:42:57</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models>
- <model id="pe0e8f121bf7c4fd7b8ec69a3248b8637_619350725" name="Base" namespace="" order-index="1" expanded="true">
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 16:43:09</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models>
- <model id="p86104765aa514bc1a0a9d45c4b94488e_464839088" name="Services" namespace="" order-index="2" expanded="true">
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 16:44:46</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models />
- <diagram type="uml-object" id="pd1584a862d66403089ce89ee3ee4aabc_452816340" name="UserService" order-index="0" uid="" name-style="" auto-routed-paths="false" default-line-style="default">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 16:44:31</creation-date>
- <change-date>11/06/2022 16:54:18</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items>
- <item id="7cc326573a20477690a09e1cd2066d38" cid="ELEM004" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:50:15" from="39eb180f4e0248729b2ed058d15c19d8" to="3ed6e80069834d258c640a4255a93735">
- <connector />
- </item>
- <item id="3ed6e80069834d258c640a4255a93735" cid="C001" type="class" name="UserService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:45:42" visibility="undefined">
- <stereotypes>
- <stereotype name="service" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="3ed6e80069834d258c640a4255a93735_service_c" type="service" ref="" />
- </stereotype-instances>
- <operations>
- <operation id="o794835c3a4494774ac8cd47294ca67a1360" cid="OP001" name="CreateUser" creation-date="11/06/2022 16:47:42" type="" type-id="" visibility="undefined">
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </operation>
- <operation id="oa04ea5c376ed43fbbc1ff0c041613176230" cid="OP002" name="DeleteUser" creation-date="11/06/2022 16:47:42" type="" type-id="" visibility="undefined">
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </operation>
- <operation id="oc18ceca81a3f439baecd9631e995acc1717" cid="OP003" name="GetUser" creation-date="11/06/2022 16:47:42" type="" type-id="" visibility="undefined">
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </operation>
- <operation id="od0d2a33d4b394457bedcbc9966d3d8f6198" cid="OP004" name="Lock" creation-date="11/06/2022 16:47:42" type="" type-id="" visibility="undefined">
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </operation>
- </operations>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- <item id="39eb180f4e0248729b2ed058d15c19d8" cid="OBJ001" type="object" name="UserService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:48:10" visibility="undefined">
- <stereotypes>
- <stereotype name="injection" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="39eb180f4e0248729b2ed058d15c19d8_injection_c" type="injection" ref="" />
- </stereotype-instances>
- <object classifier-name="">
- <attributes>
- <attribute name="repository" value="RepoUser" />
- <attribute name="currentContext" value="QlbrcContext" />
- <attribute name="loggerFactory" value="" />
- </attributes>
- </object>
- </item>
- <item id="c9b365148daa4cbdafc8000bbc9783b5" cid="GNR001" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:54:18" from="3ed6e80069834d258c640a4255a93735" to="46d6acea9ee94f478d35fd94222823d1" visibility="package" />
- </abstract-items>
- <layer id="41aff4bb8e98428d88ec62b4c7523939" name="Default" visible="true" enabled="true" locked="false">
- <item id="3ed6e80069834d258c640a4255a93735" iid="9af97ba125b84743a4bd87a190e410dc" show-fields="true" creation-date="11/06/2022 16:45:42" order-index="0" type="entity">
- <layout ax="249" ay="317" awidth="555" aheight="160" x="249" y="317" width="555" height="160" rotation-center="-207.5,0" />
- <classifier />
- <class />
- </item>
- <item id="39eb180f4e0248729b2ed058d15c19d8" iid="d4ce60313fbd41aa9ff9ad252d6758c1" creation-date="11/06/2022 16:48:10" order-index="1" type="entity">
- <layout ax="423" ay="65" awidth="207" aheight="160" x="423" y="65" width="207" height="160" rotation-center="-33.5,0" />
- </item>
- <item id="7cc326573a20477690a09e1cd2066d38" iid="92a4efd657404e57a9914432cd5d2cc9" creation-date="11/06/2022 16:50:15" order-index="2" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="524" y1="225" x2="526" y2="317" start-border-pos="0.628019323671498" end-border-pos="0.124774774774775" start-local-pos="101" end-local-pos="277" name-position="0,20">
- <points>
- <point x="524" y="225" />
- <point x="526" y="317" />
- </points>
- </layout>
- <relation from="39eb180f4e0248729b2ed058d15c19d8" from-iid="d4ce60313fbd41aa9ff9ad252d6758c1" to="3ed6e80069834d258c640a4255a93735" to-iid="9af97ba125b84743a4bd87a190e410dc" />
- </item>
- <item id="46d6acea9ee94f478d35fd94222823d1" iid="21e3295ad1c1482b989150c2e6940d62" show-fields="true" creation-date="11/06/2022 16:53:13" order-index="0" type="entity">
- <layout ax="739" ay="65" awidth="140" aheight="160" x="739" y="65" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="c9b365148daa4cbdafc8000bbc9783b5" iid="c53cab43e82b486fad1b4162ac9976b2" creation-date="11/06/2022 16:54:18" order-index="3" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="526" y1="317" x2="809" y2="225" start-border-pos="0.124774774774775" end-border-pos="0.625" start-local-pos="277" end-local-pos="70" name-position="0,20">
- <points>
- <point x="526" y="317" />
- <point x="809" y="225" />
- </points>
- </layout>
- <relation from="3ed6e80069834d258c640a4255a93735" from-iid="9af97ba125b84743a4bd87a190e410dc" to="46d6acea9ee94f478d35fd94222823d1" to-iid="21e3295ad1c1482b989150c2e6940d62" />
- </item>
- </layer>
- </diagram>
- <diagram type="uml-object" id="pac3a1f45b46c465ab97c1528578e8a81_316582569" name="TenantService" order-index="1" overview-order-index="0" uid="" name-style="" auto-routed-paths="false" default-line-style="default">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 16:58:31</creation-date>
- <change-date>11/06/2022 17:03:05</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items>
- <item id="f3456d04aa124ec5add044c05c554261" cid="OBJ005" type="object" name="TenantService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:01:11" visibility="undefined">
- <stereotypes>
- <stereotype name="injection" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="f3456d04aa124ec5add044c05c554261_injection_c" type="injection" ref="" />
- </stereotype-instances>
- <object classifier-name="">
- <attributes>
- <attribute name="repository" value="RepoTenant" />
- <attribute name="currentContext" value="QlrbcContext" />
- <attribute name="loggerFactory" value="" />
- </attributes>
- </object>
- </item>
- <item id="91cb612d4ae54c0aa919b7804d42921f" cid="GNR002" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:02:59" from="0faf8c3fe2b14c878fb5677b298d52cd" to="46d6acea9ee94f478d35fd94222823d1" visibility="package" />
- <item id="a6ed5fd7337a483dbe2066ceb2198e67" cid="ELEM005" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:03:05" from="0faf8c3fe2b14c878fb5677b298d52cd" to="f3456d04aa124ec5add044c05c554261">
- <connector />
- </item>
- <item id="0faf8c3fe2b14c878fb5677b298d52cd" cid="C004" type="class" name="TenantService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:58:45" visibility="undefined">
- <stereotypes>
- <stereotype name="service" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="0faf8c3fe2b14c878fb5677b298d52cd_service_c" type="service" ref="" />
- </stereotype-instances>
- <operations>
- <operation id="o6fc19c68cf504220b7f33a92f168377d49" cid="OP005" name="ExistsTenant" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined">
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </operation>
- <operation id="ofcb769f4f2f44cf1a499d7df738e8946241" cid="OP006" name="Lock" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined" />
- <operation id="o765b48f68f22487a9899b98f8cb3b07b449" cid="OP007" name="GetTenant" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined" />
- <operation id="o541b93c6e78344d19f114f7d9a560b86821" cid="OP008" name="CreateTenant" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined" />
- <operation id="o9c6fc72de6054fba9924ddcf4684b5da900" cid="OP009" name="Validate" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined" />
- <operation id="o74aa14b24aac4aee8316e5214f83aed996" cid="OP010" name="UpdateTenant" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined" />
- <operation id="o65fd7c2126da4b2ba9795a74c7a917e3372" cid="OP011" name="DeleteTenant" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined" />
- </operations>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- </abstract-items>
- <layer id="ab8fcb84b3ef452a9268181e5fce0074" name="Default" visible="true" enabled="true" locked="false">
- <item id="0faf8c3fe2b14c878fb5677b298d52cd" iid="7272c1519d704568b6b6b91b1cb04c22" show-fields="true" creation-date="11/06/2022 16:58:45" order-index="0" type="entity">
- <layout ax="336" ay="296" awidth="379" aheight="232" x="336" y="296" width="379" height="232" rotation-center="-119.5,-36" />
- <classifier />
- <class />
- </item>
- <item id="f3456d04aa124ec5add044c05c554261" iid="8ecb3ea9abae4d71b27076220b2d0601" creation-date="11/06/2022 17:01:11" order-index="1" type="entity">
- <layout ax="443" ay="39" awidth="140" aheight="160" x="443" y="39" width="140" height="160" />
- </item>
- <item id="46d6acea9ee94f478d35fd94222823d1" iid="745ca12e37174d1796d95f6225db466a" show-fields="true" creation-date="11/06/2022 16:53:13" order-index="0" type="entity">
- <layout ax="799" ay="39" awidth="140" aheight="160" x="799" y="39" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="91cb612d4ae54c0aa919b7804d42921f" iid="cba542201cf74319806359b37fbd27a9" creation-date="11/06/2022 17:02:59" order-index="2" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="526" y1="296" x2="869" y2="199" start-border-pos="0.12532981530343" end-border-pos="0.625" start-local-pos="190" end-local-pos="70" name-position="0,20">
- <points>
- <point x="526" y="296" />
- <point x="869" y="199" />
- </points>
- </layout>
- <relation from="0faf8c3fe2b14c878fb5677b298d52cd" from-iid="7272c1519d704568b6b6b91b1cb04c22" to="46d6acea9ee94f478d35fd94222823d1" to-iid="745ca12e37174d1796d95f6225db466a" />
- </item>
- <item id="a6ed5fd7337a483dbe2066ceb2198e67" iid="38f8623795fe4507b49770cb4e085331" creation-date="11/06/2022 17:03:05" order-index="3" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="526" y1="296" x2="513" y2="199" start-border-pos="0.12532981530343" end-border-pos="0.625" start-local-pos="190" end-local-pos="70" name-position="0,20">
- <points>
- <point x="526" y="296" />
- <point x="513" y="199" />
- </points>
- </layout>
- <relation from="0faf8c3fe2b14c878fb5677b298d52cd" from-iid="7272c1519d704568b6b6b91b1cb04c22" to="f3456d04aa124ec5add044c05c554261" to-iid="8ecb3ea9abae4d71b27076220b2d0601" />
- </item>
- </layer>
- </diagram>
- <diagram type="uml-object" id="p047c9bd60aa843d88c1943f4c32a802b_515944221" name="SettingsService" order-index="2" overview-order-index="1" uid="" name-style="" auto-routed-paths="false" default-line-style="default">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 17:03:29</creation-date>
- <change-date>11/06/2022 17:07:43</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items>
- <item id="96885c6e72064a9c9e9d688acff09c0d" cid="ELEM006" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:07:22" from="36a7d1fb19fb4d318895b30f13b1898c" to="060994f2e03b4db1a5b73126dab76749">
- <connector />
- </item>
- <item id="36a7d1fb19fb4d318895b30f13b1898c" cid="C005" type="class" name="SettingsService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:03:54" visibility="undefined">
- <stereotypes>
- <stereotype name="service" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="36a7d1fb19fb4d318895b30f13b1898c_service_c" type="service" ref="" />
- </stereotype-instances>
- <operations>
- <operation id="ob2e214e604c749bc966b0a6f9bd9751f872" cid="OP012" name="CreateSettings" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
- <operation id="oa1bfa8e2afea4c219b301251abcc1678112" cid="OP013" name="GetSettings" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
- <operation id="o5e608d50d4d446d6bbf4c73296e8692c520" cid="OP014" name="GetSettingsValue" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
- <operation id="o4b7b8fb0a8e9463883e3b73ac602531f279" cid="OP015" name="ExistsSettings" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
- <operation id="o942f4b98249f41f8b252602930417fed231" cid="OP016" name="ExistsSettingsValue" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
- <operation id="of792b3465d6b42aa9fd4ad849119a60b479" cid="OP017" name="AddSettingsValue" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
- <operation id="o6d98f57fc01646a38094b660a302e2ed768" cid="OP018" name="UpdateSettings" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
- <operation id="o39086ca5ba634ef3806ac6e47c2ebc7e558" cid="OP019" name="UpdateSettingsValue" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
- <operation id="o609310cf80764df8aa3f6ad63f2038ab519" cid="OP020" name="AddOrUpdateSettingsValue" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
- <operation id="o1d12c2c656f743ddb16e0cd47cb72513856" cid="OP021" name="GetSettingsValues" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
- </operations>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- <item id="060994f2e03b4db1a5b73126dab76749" cid="OBJ006" type="object" name="SettingsService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:06:21" visibility="undefined">
- <stereotypes>
- <stereotype name="injection" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="060994f2e03b4db1a5b73126dab76749_injection_c" type="injection" ref="" />
- </stereotype-instances>
- <object classifier-name="">
- <attributes>
- <attribute name="repository" value="RepoSetting" />
- <attribute name="currentContext" value="QlrbcContext" />
- <attribute name="loggerFactory" value="" />
- </attributes>
- </object>
- </item>
- <item id="9743a212e65545a0a23751b8c7c55dea" cid="GNR003" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:07:43" from="36a7d1fb19fb4d318895b30f13b1898c" to="46d6acea9ee94f478d35fd94222823d1" visibility="package" />
- </abstract-items>
- <layer id="23d1b8e7eb1e4973b4fac78af55a16a1" name="Default" visible="true" enabled="true" locked="false">
- <item id="36a7d1fb19fb4d318895b30f13b1898c" iid="5a3e38a1fcf54b4dbb9a375ba2658c25" show-fields="true" creation-date="11/06/2022 17:03:54" order-index="0" type="entity">
- <layout ax="340" ay="273" awidth="405" aheight="322" x="340" y="273" width="405" height="322" rotation-center="-132.5,-81" />
- <classifier />
- <class />
- </item>
- <item id="060994f2e03b4db1a5b73126dab76749" iid="1f90737a4bf84feca9cac1481bf4df72" creation-date="11/06/2022 17:06:21" order-index="1" type="entity">
- <layout ax="384" ay="36" awidth="207" aheight="160" x="384" y="36" width="207" height="160" rotation-center="33.5,0" />
- </item>
- <item id="96885c6e72064a9c9e9d688acff09c0d" iid="e63c7b99ca39444a881bd39609176d19" creation-date="11/06/2022 17:07:22" order-index="2" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="542" y1="273" x2="488" y2="196" start-border-pos="0.124691358024691" end-border-pos="0.6243961352657" start-local-pos="202" end-local-pos="104" name-position="0,20">
- <points>
- <point x="542" y="273" />
- <point x="488" y="196" />
- </points>
- </layout>
- <relation from="36a7d1fb19fb4d318895b30f13b1898c" from-iid="5a3e38a1fcf54b4dbb9a375ba2658c25" to="060994f2e03b4db1a5b73126dab76749" to-iid="1f90737a4bf84feca9cac1481bf4df72" />
- </item>
- <item id="46d6acea9ee94f478d35fd94222823d1" iid="c96a9c0eaeb340f9ab3f2eaeaa14db40" show-fields="true" creation-date="11/06/2022 16:53:13" order-index="0" type="entity">
- <layout ax="837" ay="36" awidth="140" aheight="160" x="837" y="36" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="9743a212e65545a0a23751b8c7c55dea" iid="8d7bdada3d41485d806721e7a2bd8c65" creation-date="11/06/2022 17:07:43" order-index="3" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="542" y1="273" x2="907" y2="196" start-border-pos="0.124691358024691" end-border-pos="0.625" start-local-pos="202" end-local-pos="70" name-position="0,20">
- <points>
- <point x="542" y="273" />
- <point x="907" y="196" />
- </points>
- </layout>
- <relation from="36a7d1fb19fb4d318895b30f13b1898c" from-iid="5a3e38a1fcf54b4dbb9a375ba2658c25" to="46d6acea9ee94f478d35fd94222823d1" to-iid="c96a9c0eaeb340f9ab3f2eaeaa14db40" />
- </item>
- </layer>
- </diagram>
- </model>
- </sub-models>
- </model>
- <model id="p223e98f24dc24b5ba97eaf31797eaf4f_349702731" name="Common" namespace="" order-index="2" expanded="true">
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 16:46:21</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models>
- <model id="p7e57d3bc587141998753a4e43ade41c2_822514128" name="Services" namespace="" order-index="1" expanded="true">
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 16:51:07</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models />
- <diagram type="uml-object" id="p035f2a2d08ba4f3dae1791f1503a9611_649752501" name="Abstracts" order-index="1" expanded="true" uid="" name-style="" auto-routed-paths="false" default-line-style="default" view-location="0,-10">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 16:51:20</creation-date>
- <change-date>12/07/2022 05:24:58</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items>
- <item id="e43d3fe1f6eb4864bda6105388cd01ad" cid="GNR006" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:23:10" from="46d6acea9ee94f478d35fd94222823d1" to="9d3c3e4449654a8eb8937c600d6387cb" visibility="package" />
- <item id="a450326c9e38432b906d894d13d94161" cid="ELEM003" type="template-parameter" name="TRepository1" owner="44a36b903018464184f14b39c3b5c834" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:13:10">
- <template-parameter />
- </item>
- <item id="2b78dae590774ba29408b5a7421772f8" cid="GNR005" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:22:55" from="9d3c3e4449654a8eb8937c600d6387cb" to="3a66f5b07fb94e5798d0bb4c5c194a2e" visibility="package" />
- <item id="065ff00536924b68a0e40e5a3c5285de" cid="ELEM026" type="template-parameter" name="TRepository" owner="d377c2fa19bc467cbe34ff3f15c549a3" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:24:51">
- <template-parameter />
- </item>
- <item id="1dccc832d02c4ce7b8aa6ed5f20e0a3e" cid="ELEM002" type="template-parameter" name="TRepository" owner="46d6acea9ee94f478d35fd94222823d1" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:53:43">
- <template-parameter />
- </item>
- <item id="45e6b0d9085a485f9ba8b04f83099e60" cid="GNR007" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:23:18" from="44a36b903018464184f14b39c3b5c834" to="9d3c3e4449654a8eb8937c600d6387cb" visibility="package" />
- <item id="d377c2fa19bc467cbe34ff3f15c549a3" cid="C013" type="class" name="AbstractWorkerService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:23:58" visibility="undefined">
- <stereotypes>
- <stereotype name="class" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="d377c2fa19bc467cbe34ff3f15c549a3_class_c" type="class" ref="" />
- </stereotype-instances>
- <owned-items />
- <template-parameters>
- <template-parameter id="t5dd0192a160140b4a398776ebcb537ef282" name="TRepository" kind="" default-value="" ref="065ff00536924b68a0e40e5a3c5285de" />
- <template-parameter id="tb4676a8c48ad4010b300e58318cf72d7284" name="TWorker" kind="" default-value="" ref="ac37d7f220364a87aa4991c7564e249a" />
- <template-parameter id="t3b9c9a47b5ab4fbfb97aec57f1ce60f3284" name="" kind="" default-value="" ref="d19fe1a5d2d94d40a6103951d1d6ded2" />
- </template-parameters>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- <item id="7399b648d3cb40019de69d5f8ea9f2b9" cid="C002" type="class" name="AbstractRepositoryService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:51:40" visibility="undefined" is-abstract="true">
- <stereotypes>
- <stereotype name="class" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="7399b648d3cb40019de69d5f8ea9f2b9_class_c" type="class" ref="" />
- </stereotype-instances>
- <owned-items />
- <template-parameters>
- <template-parameter id="td4e45cb8f4e5405aba338a3cd8687421126" name="TRepository" kind="" default-value="" ref="973f3350bf004251bfd79b861f6bfe4f" />
- </template-parameters>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- <item id="d19fe1a5d2d94d40a6103951d1d6ded2" cid="ELEM028" type="template-parameter" owner="d377c2fa19bc467cbe34ff3f15c549a3" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:24:51">
- <template-parameter />
- </item>
- <item id="03c425c9d95a4dabb6a0127890768487" cid="ELEM009" type="template-parameter" name="TRepository4" owner="44a36b903018464184f14b39c3b5c834" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:13:10">
- <template-parameter />
- </item>
- <item id="71691530fb544e2898935b1493808140" cid="GNR008" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:24:58" from="d377c2fa19bc467cbe34ff3f15c549a3" to="46d6acea9ee94f478d35fd94222823d1" visibility="package" />
- <item id="9d3c3e4449654a8eb8937c600d6387cb" cid="C011" type="class" name="AbstractService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:22:05" visibility="undefined">
- <stereotypes>
- <stereotype name="class" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="9d3c3e4449654a8eb8937c600d6387cb_class_c" type="class" ref="" />
- </stereotype-instances>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- <item id="92049b015be3442990ac987167c8abd0" cid="ELEM007" type="template-parameter" name="TRepository2" owner="44a36b903018464184f14b39c3b5c834" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:13:10">
- <template-parameter />
- </item>
- <item id="ac37d7f220364a87aa4991c7564e249a" cid="ELEM027" type="template-parameter" name="TWorker" owner="d377c2fa19bc467cbe34ff3f15c549a3" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:24:51">
- <template-parameter />
- </item>
- <item id="a5e7c34c752b4ca59ce9a4994c3dc642" cid="ELEM010" type="template-parameter" name="TRepository5" owner="44a36b903018464184f14b39c3b5c834" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:13:10">
- <template-parameter />
- </item>
- <item id="d283670b81f54b88aa9033684d50a965" cid="ELEM008" type="template-parameter" name="TRepository3" owner="44a36b903018464184f14b39c3b5c834" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:13:10">
- <template-parameter />
- </item>
- <item id="44a36b903018464184f14b39c3b5c834" cid="C007" type="class" name="AbstractMultiRepositoryService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:12:17" visibility="undefined">
- <stereotypes>
- <stereotype name="class" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="44a36b903018464184f14b39c3b5c834_class_c" type="class" ref="" />
- </stereotype-instances>
- <owned-items />
- <template-parameters>
- <template-parameter id="tb3aba22d26d542d5aba5fb842218cca0990" name="TRepository1" kind="" default-value="" ref="a450326c9e38432b906d894d13d94161" />
- <template-parameter id="t6cc6997b06d24cde93360a768ba1431c992" name="TRepository2" kind="" default-value="" ref="92049b015be3442990ac987167c8abd0" />
- <template-parameter id="t4e2fee2e6e6f474e8252229b5651a913992" name="TRepository3" kind="" default-value="" ref="d283670b81f54b88aa9033684d50a965" />
- <template-parameter id="t8b1f967b552c461db37bd6f53ee80f85992" name="TRepository4" kind="" default-value="" ref="03c425c9d95a4dabb6a0127890768487" />
- <template-parameter id="t035e67e1b90f4c96818febafc05f93a2992" name="TRepository5" kind="" default-value="" ref="a5e7c34c752b4ca59ce9a4994c3dc642" />
- </template-parameters>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- <item id="46d6acea9ee94f478d35fd94222823d1" cid="C003" type="class" name="AbstractRepositoryService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:53:13" visibility="undefined" is-abstract="true">
- <stereotypes>
- <stereotype name="class" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="46d6acea9ee94f478d35fd94222823d1_class_c" type="class" ref="" />
- </stereotype-instances>
- <owned-items />
- <template-parameters>
- <template-parameter id="tdf2e616fc6ee47dd9dd448158b23b5e3373" name="TRepository" kind="" default-value="" ref="1dccc832d02c4ce7b8aa6ed5f20e0a3e" />
- </template-parameters>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- <item id="3a66f5b07fb94e5798d0bb4c5c194a2e" cid="C012" type="class" name="IService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:22:32" visibility="undefined">
- <stereotypes>
- <stereotype name="interface" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="3a66f5b07fb94e5798d0bb4c5c194a2e_interface_c" type="interface" ref="" />
- </stereotype-instances>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- </abstract-items>
- <layer id="974947da2bfc444388bc6e89db6ee384" name="Default" visible="true" enabled="true" locked="false">
- <item id="46d6acea9ee94f478d35fd94222823d1" iid="53d0321243e44a419dacd0a0a3868405" show-fields="true" creation-date="11/06/2022 16:53:13" order-index="0" type="entity">
- <layout ax="455" ay="384" awidth="140" aheight="160" x="455" y="384" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="44a36b903018464184f14b39c3b5c834" iid="c5b6bdd8605945748f1d4ff738d530d8" show-fields="true" creation-date="11/08/2022 05:12:17" order-index="1" type="entity">
- <layout ax="875" ay="394" awidth="140" aheight="160" x="875" y="394" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="9d3c3e4449654a8eb8937c600d6387cb" iid="db1d120067954e06a70acf78671fa7b8" show-fields="true" creation-date="12/07/2022 05:22:05" order-index="2" type="entity">
- <layout ax="711" ay="83" awidth="140" aheight="160" x="711" y="83" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="3a66f5b07fb94e5798d0bb4c5c194a2e" iid="0ec569ee832d4154b6e7c3a1b19f93ec" show-fields="true" creation-date="12/07/2022 05:22:32" order-index="3" type="entity">
- <layout ax="374" ay="-77" awidth="140" aheight="160" x="374" y="-77" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="2b78dae590774ba29408b5a7421772f8" iid="2632e963378c465c9e829d2bd4ea75a6" creation-date="12/07/2022 05:22:55" order-index="4" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="781" y1="83" x2="514" y2="3" start-border-pos="0.125" end-border-pos="0.375" start-local-pos="70" end-local-pos="80" name-position="0,20">
- <points>
- <point x="781" y="83" />
- <point x="514" y="3" />
- </points>
- </layout>
- <relation from="9d3c3e4449654a8eb8937c600d6387cb" from-iid="db1d120067954e06a70acf78671fa7b8" to="3a66f5b07fb94e5798d0bb4c5c194a2e" to-iid="0ec569ee832d4154b6e7c3a1b19f93ec" />
- </item>
- <item id="e43d3fe1f6eb4864bda6105388cd01ad" iid="75723ac28c834b01939df1740aad0ad6" creation-date="12/07/2022 05:23:10" order-index="5" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="525" y1="384" x2="781" y2="243" start-border-pos="0.125" end-border-pos="0.625" start-local-pos="70" end-local-pos="70" name-position="0,20">
- <points>
- <point x="525" y="384" />
- <point x="781" y="243" />
- </points>
- </layout>
- <relation from="46d6acea9ee94f478d35fd94222823d1" from-iid="53d0321243e44a419dacd0a0a3868405" to="9d3c3e4449654a8eb8937c600d6387cb" to-iid="db1d120067954e06a70acf78671fa7b8" />
- </item>
- <item id="45e6b0d9085a485f9ba8b04f83099e60" iid="1f16e3edeee747fdbc12848a4764bc8e" creation-date="12/07/2022 05:23:18" order-index="6" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="945" y1="394" x2="781" y2="243" start-border-pos="0.125" end-border-pos="0.625" start-local-pos="70" end-local-pos="70" name-position="0,20">
- <points>
- <point x="945" y="394" />
- <point x="781" y="243" />
- </points>
- </layout>
- <relation from="44a36b903018464184f14b39c3b5c834" from-iid="c5b6bdd8605945748f1d4ff738d530d8" to="9d3c3e4449654a8eb8937c600d6387cb" to-iid="db1d120067954e06a70acf78671fa7b8" />
- </item>
- <item id="71691530fb544e2898935b1493808140" iid="045196d42f8a4a57b8d7f1f1e802b7ae" creation-date="12/07/2022 05:24:58" order-index="8" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="333" y1="629" x2="525" y2="544" start-border-pos="0.117857142857143" end-border-pos="0.625" start-local-pos="66" end-local-pos="70" name-position="0,20">
- <points>
- <point x="333" y="629" />
- <point x="525" y="544" />
- </points>
- </layout>
- <relation from="d377c2fa19bc467cbe34ff3f15c549a3" from-iid="123b9816755c49a3b36e7d5b10a20a3a" to="46d6acea9ee94f478d35fd94222823d1" to-iid="53d0321243e44a419dacd0a0a3868405" />
- </item>
- <item id="d377c2fa19bc467cbe34ff3f15c549a3" iid="123b9816755c49a3b36e7d5b10a20a3a" show-fields="true" creation-date="12/07/2022 05:23:58" order-index="7" type="entity">
- <layout ax="267" ay="629" awidth="140" aheight="160" x="267" y="629" width="140" height="160" />
- <classifier />
- <class />
- </item>
- </layer>
- </diagram>
- </model>
- </sub-models>
- </model>
- <model id="p86283f6d46a746afabaffdd167058442_433835851" name="Customer" namespace="" order-index="3" expanded="true">
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 17:08:04</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models>
- <model id="pc102eb3f8c0042f0b39c1555bb31fd00_155811898" name="Services" namespace="" order-index="1" expanded="true">
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/06/2022 17:08:19</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models />
- <diagram type="uml-object" id="pc40d3cebeb144dfebabdd0241c2bcb05_664271647" name="CustomerService" order-index="1" uid="" name-style="" auto-routed-paths="false" default-line-style="default">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author>Dalibor Votruba</author>
- </authors>
- <description />
- <creation-date>11/08/2022 05:11:09</creation-date>
- <change-date>11/08/2022 05:15:36</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items>
- <item id="7b94a4d5edb6438a82af3d9445dea2de" cid="GNR004" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:14:06" from="d0073f5bfa1e416a993d396a5c5f3719" to="44a36b903018464184f14b39c3b5c834" visibility="package" />
- <item id="e40abda945f14a43b98246892d7a74d3" cid="OBJ007" type="object" name="CustomerService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:14:43" visibility="undefined">
- <stereotypes>
- <stereotype name="injection" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="e40abda945f14a43b98246892d7a74d3_injection_c" type="injection" ref="" />
- </stereotype-instances>
- <object classifier-name="">
- <attributes>
- <attribute name="repository" value="RepoCustomer" />
- <attribute name="repository" value="RepoContact" />
- <attribute name="repository" value="RepoUser" />
- <attribute name="repository" value="RepoCountry" />
- <attribute name="currentContext" value="QlbrcContext" />
- <attribute name="loggerFactory" value="" />
- </attributes>
- </object>
- </item>
- <item id="38831ef7eac745f7b77a0603bdef94dc" cid="ELEM011" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:15:36" from="d0073f5bfa1e416a993d396a5c5f3719" to="e40abda945f14a43b98246892d7a74d3">
- <connector />
- </item>
- <item id="d0073f5bfa1e416a993d396a5c5f3719" cid="C006" type="class" name="CustomerService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:11:35" visibility="undefined">
- <stereotypes>
- <stereotype name="service" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="d0073f5bfa1e416a993d396a5c5f3719_service_c" type="service" ref="" />
- </stereotype-instances>
- <operations>
- <operation id="ob52ac7e8d33e44f2a87f9c9f82338da799" cid="OP022" name="CreateCustomer" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="o02fe9df59a594bbe9442cd33c5476760792" cid="OP023" name="UpdateCustomer" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="o17937f03c04046f392c75c9fc6259b6342" cid="OP024" name="DeleteCustomer" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="of8675f6d83434e0e8e5341f3018bb2f0319" cid="OP025" name="GetCustomer" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="obb5eefa6dd424813961581b9c0cc39c4432" cid="OP026" name="ExistsCustomer" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="oa50b804e87f842cd837468fd9e517c7f553" cid="OP027" name="AssignUser" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="o198a2d6a9e2144029d01835d4a38206f63" cid="OP028" name="UnAssignUser" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="o44246dbb7ebb444fa102049fb2d35444120" cid="OP029" name="CreateContact" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="oafe6061d1f6540919621346202228c8823" cid="OP030" name="UpdateContact" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="oc7f70a2005fd447ab4dbcd7b991915e8920" cid="OP031" name="DeleteContact" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="o6df7ea6552d8407483b2b253e2940eaa159" cid="OP032" name="GetContact" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="o41aa9ad7f6324c6f93e15d34f8d4b371734" cid="OP033" name="GetContacts" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="odcdafe7e92be4a1c877fa3ab194e4db3200" cid="OP034" name="GetPreferredContacts" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- <operation id="o98b0b8bac35d49109283620ccbd50217303" cid="OP035" name="ValidateContacts" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
- </operations>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- </abstract-items>
- <layer id="09c8997738b04955879c2e5411f9ba43" name="Default" visible="true" enabled="true" locked="false">
- <item id="d0073f5bfa1e416a993d396a5c5f3719" iid="cef02f1da9594bd7bb6b635bdce9ecc3" show-fields="true" creation-date="11/08/2022 05:11:35" order-index="0" type="entity">
- <layout ax="445.5194" ay="356.5803" awidth="383" aheight="369" x="460" y="357" width="383" height="369" rotation-center="-121.5,-104.5" />
- <classifier />
- <class />
- </item>
- <item id="44a36b903018464184f14b39c3b5c834" iid="98af29cf48154f3593129acfe2480420" show-fields="true" creation-date="11/08/2022 05:12:17" order-index="1" type="entity">
- <layout ax="809.4272" ay="164.3149" awidth="140" aheight="160" x="862" y="331" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="7b94a4d5edb6438a82af3d9445dea2de" iid="be5f502c608440c9a642ad042ae2170c" creation-date="11/08/2022 05:14:06" order-index="2" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="637" y1="357" x2="879" y2="324" start-border-pos="0.125" end-border-pos="0.625" start-local-pos="70" end-local-pos="70" name-position="0,20">
- <points>
- <point x="637" y="357" />
- <point x="879" y="324" />
- </points>
- </layout>
- <relation from="d0073f5bfa1e416a993d396a5c5f3719" from-iid="cef02f1da9594bd7bb6b635bdce9ecc3" to="44a36b903018464184f14b39c3b5c834" to-iid="98af29cf48154f3593129acfe2480420" />
- </item>
- <item id="e40abda945f14a43b98246892d7a74d3" iid="5d4e01b264ad4a7f84214d19aa536baa" creation-date="11/08/2022 05:14:43" order-index="3" type="entity">
- <layout ax="423.4799" ay="59.49203" awidth="335" aheight="216" x="425" y="59.49203" width="335" height="216" rotation-center="-97.49997,28" />
- </item>
- <item id="38831ef7eac745f7b77a0603bdef94dc" iid="025eb92b40944ae8a5e2dae0c244c62c" creation-date="11/08/2022 05:15:36" order-index="4" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="638" y1="357" x2="590" y2="275" start-border-pos="0.125858197893415" end-border-pos="0.62585688999721" start-local-pos="70.48059" end-local-pos="69.52011" name-position="0,20">
- <points>
- <point x="638" y="357" />
- <point x="590" y="275" />
- </points>
- </layout>
- <relation from="d0073f5bfa1e416a993d396a5c5f3719" from-iid="cef02f1da9594bd7bb6b635bdce9ecc3" to="e40abda945f14a43b98246892d7a74d3" to-iid="5d4e01b264ad4a7f84214d19aa536baa" />
- </item>
- </layer>
- </diagram>
- </model>
- </sub-models>
- </model>
- <model id="pb07e49cdd83a4142817ba7a0206211b1_743854101" name="Processor" namespace="" order-index="4" expanded="true">
- <meta>
- <authors>
- <author> </author>
- </authors>
- <description />
- <creation-date>11/08/2022 05:08:33</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models />
- <diagram type="uml-object" id="p97c4945e834b4a848bc53117c7bc552b_806997528" name="Workers" order-index="1" expanded="true" uid="" name-style="" auto-routed-paths="false" default-line-style="default" show-frame="false" view-location="0,10">
- <style>
- <background-color index="1" color="#FFFFFFFF" />
- <background-color index="2" color="#FFFFFFFF" />
- <background-type type="solid" />
- </style>
- <meta>
- <authors>
- <author>Dalibor Votruba</author>
- </authors>
- <description />
- <creation-date>12/07/2022 05:19:12</creation-date>
- <change-date>12/07/2022 05:38:14</change-date>
- <revision-count>0</revision-count>
- <version>0.0.0.1</version>
- </meta>
- <abstract-items>
- <item id="8b29087b94bf45638ee558e40d9557a2" cid="C008" type="class" name="ProcessingWorker" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:20:14" visibility="package">
- <documentations>
- <doc id="10841fa5d52d4c89acb4187035c49b86">
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Processing </t>
- </p>
- <p>
- <t>items </t>
- </p>
- <p>
- <t>and </t>
- </p>
- <p>
- <t>changes </t>
- </p>
- <p>
- <t>status
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </doc>
- </documentations>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- <item id="cc386eb15db74f10b73070cf12b705c3" cid="C015" type="class" name="ExecutingWorker" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:31:25" visibility="package">
- <documentations>
- <doc id="c3060d3b5a174a57a4e669381dfa156d">
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Executes </t>
- </p>
- <p>
- <t>items
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </doc>
- </documentations>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- <item id="87a4070a7efd4a7cacc0ffe79be90c37" cid="CNT003" type="containment" name="Processings" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:36:48" from="8b29087b94bf45638ee558e40d9557a2" to="c4696775bd4e4f9598ebc727b45f61de">
- <stereotypes>
- <stereotype name="holds" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="87a4070a7efd4a7cacc0ffe79be90c37_holds_c" type="holds" ref="" />
- </stereotype-instances>
- </item>
- <item id="d67f53c5ca1447debb3f73a7e49e3df0" cid="GNR013" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:32:05" from="cc386eb15db74f10b73070cf12b705c3" to="d377c2fa19bc467cbe34ff3f15c549a3" visibility="package" />
- <item id="00b50fb61c9e483f8ebfe983b59431f5" cid="CNT004" type="containment" name="Garbages" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:36:56" from="f21f229a93cf43959ff951a632606fb4" to="c4696775bd4e4f9598ebc727b45f61de">
- <stereotypes>
- <stereotype name="holds" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="00b50fb61c9e483f8ebfe983b59431f5_holds_c" type="holds" ref="" />
- </stereotype-instances>
- </item>
- <item id="f3480c4b3be44b868533cadc5482ecf7" cid="GNR010" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:26:42" from="f21f229a93cf43959ff951a632606fb4" to="d377c2fa19bc467cbe34ff3f15c549a3" visibility="package" />
- <item id="22e1fbb433fb482b952d4a8f0bca33ca" cid="GNR014" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:38:14" from="c4696775bd4e4f9598ebc727b45f61de" to="d377c2fa19bc467cbe34ff3f15c549a3" visibility="package" />
- <item id="8f2fdc4eac3347c6aef041212c87450f" cid="CNT002" type="containment" name="Executings" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:36:39" from="cc386eb15db74f10b73070cf12b705c3" to="c4696775bd4e4f9598ebc727b45f61de">
- <stereotypes>
- <stereotype name="holds" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="8f2fdc4eac3347c6aef041212c87450f_holds_c" type="holds" ref="" />
- </stereotype-instances>
- </item>
- <item id="c4696775bd4e4f9598ebc727b45f61de" cid="C016" type="class" name="ComplexWorker" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:36:04" visibility="public">
- <documentations>
- <doc id="f097e817988349f9b69e6c44df3e6c19">
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Holds </t>
- </p>
- <p>
- <t>complex </t>
- </p>
- <p>
- <t>of </t>
- </p>
- <p>
- <t>workers </t>
- </p>
- <p>
- <t>that </t>
- </p>
- <p>
- <t>works </t>
- </p>
- <p>
- <t>together </t>
- </p>
- <p>
- <t>as </t>
- </p>
- <p>
- <t>complex </t>
- </p>
- <p>
- <t>worker
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </doc>
- </documentations>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- <item id="561f132758b34694baf9ea6c8981d7e2" cid="CNT005" type="containment" name="Retentions" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:37:04" from="77b9473d5f6e4f7cb2d1f69a09b8f7b5" to="c4696775bd4e4f9598ebc727b45f61de">
- <stereotypes>
- <stereotype name="holds" />
- </stereotypes>
- <stereotype-instances>
- <stereotype id="561f132758b34694baf9ea6c8981d7e2_holds_c" type="holds" ref="" />
- </stereotype-instances>
- </item>
- <item id="77b9473d5f6e4f7cb2d1f69a09b8f7b5" cid="C010" type="class" name="RetentionWorker" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:20:39" visibility="package">
- <documentations>
- <doc id="831adba3e8d74ed08bb958b9b122fad3">
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Flagging </t>
- </p>
- <p>
- <t>deleted </t>
- </p>
- <p>
- <t>items </t>
- </p>
- <p>
- <t>and </t>
- </p>
- <p>
- <t>set </t>
- </p>
- <p>
- <t>items </t>
- </p>
- <p>
- <t>expirations
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </doc>
- </documentations>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- <item id="4b3186229a4641c69b39c83959610694" cid="GNR011" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:27:01" from="77b9473d5f6e4f7cb2d1f69a09b8f7b5" to="d377c2fa19bc467cbe34ff3f15c549a3" visibility="package" />
- <item id="b028915e74d34090a5397b0990abeeb7" cid="GNR009" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:26:32" from="8b29087b94bf45638ee558e40d9557a2" to="d377c2fa19bc467cbe34ff3f15c549a3" visibility="package" />
- <item id="f21f229a93cf43959ff951a632606fb4" cid="C009" type="class" name="GarbageWorker" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:20:27" visibility="package">
- <documentations>
- <doc id="ac518111f8974e97ab679f3bf69e8eee">
- <text>
- <default>
- <style font-name="Verdana" font-size="12">
- <text>
- <solid-brush color="#FFE6E6E6" />
- </text>
- </style>
- </default>
- <styles />
- <content>
- <paragraph>
- <style numbering-type="None">
- <numbering name="" multi-level="false">
- <numbering-level type="None" level="0" format="{0}." />
- </numbering>
- </style>
- <p>
- <t>Physically </t>
- </p>
- <p>
- <t>deletes </t>
- </p>
- <p>
- <t>items
- </t>
- </p>
- </paragraph>
- </content>
- </text>
- </doc>
- </documentations>
- <source-codes>
- <source-code language="ActionScript" />
- </source-codes>
- </item>
- </abstract-items>
- <layer id="bac8a598a6ad4beab99faa505b3e0174" name="Default" visible="true" enabled="true" locked="false">
- <item id="8b29087b94bf45638ee558e40d9557a2" iid="719b10c594d54e349291bf5a37b362a1" show-fields="true" creation-date="12/07/2022 05:20:14" order-index="0" type="entity">
- <layout ax="324" ay="196" awidth="140" aheight="160" x="324" y="196" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="f21f229a93cf43959ff951a632606fb4" iid="eb612d43148f4eb8822eacbbea082946" show-fields="true" creation-date="12/07/2022 05:20:27" order-index="1" type="entity">
- <layout ax="588" ay="196" awidth="140" aheight="160" x="588" y="196" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="77b9473d5f6e4f7cb2d1f69a09b8f7b5" iid="922f8ff02e1049c6b0be4ed382467f82" show-fields="true" creation-date="12/07/2022 05:20:39" order-index="2" type="entity">
- <layout ax="852" ay="196" awidth="140" aheight="160" x="852" y="196" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="d377c2fa19bc467cbe34ff3f15c549a3" iid="87f252a57229403092943f80bece1a1f" show-fields="true" creation-date="12/07/2022 05:23:58" order-index="7" type="entity">
- <layout ax="267" ay="629" awidth="140" aheight="160" x="267" y="629" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="b028915e74d34090a5397b0990abeeb7" iid="7f3f5364e6c14bd09e20d5657d188fee" creation-date="12/07/2022 05:26:32" order-index="8" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="394" y1="356" x2="337" y2="629" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="70" end-local-pos="70" name-position="0,20">
- <points>
- <point x="394" y="356" />
- <point x="337" y="629" />
- </points>
- </layout>
- <relation from="8b29087b94bf45638ee558e40d9557a2" from-iid="719b10c594d54e349291bf5a37b362a1" to="d377c2fa19bc467cbe34ff3f15c549a3" to-iid="87f252a57229403092943f80bece1a1f" />
- </item>
- <item id="f3480c4b3be44b868533cadc5482ecf7" iid="bd2371d1d82142978f6a5adf1c524a06" creation-date="12/07/2022 05:26:42" order-index="9" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="658" y1="356" x2="337" y2="629" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="70" end-local-pos="70" name-position="0,20">
- <points>
- <point x="658" y="356" />
- <point x="337" y="629" />
- </points>
- </layout>
- <relation from="f21f229a93cf43959ff951a632606fb4" from-iid="eb612d43148f4eb8822eacbbea082946" to="d377c2fa19bc467cbe34ff3f15c549a3" to-iid="87f252a57229403092943f80bece1a1f" />
- </item>
- <item id="4b3186229a4641c69b39c83959610694" iid="c78ede720b744852a9ff8e4c4af80cb6" creation-date="12/07/2022 05:27:01" order-index="10" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="922" y1="356" x2="337" y2="629" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="70" end-local-pos="70" name-position="0,20">
- <points>
- <point x="922" y="356" />
- <point x="337" y="629" />
- </points>
- </layout>
- <relation from="77b9473d5f6e4f7cb2d1f69a09b8f7b5" from-iid="922f8ff02e1049c6b0be4ed382467f82" to="d377c2fa19bc467cbe34ff3f15c549a3" to-iid="87f252a57229403092943f80bece1a1f" />
- </item>
- <item id="cc386eb15db74f10b73070cf12b705c3" iid="b14f58981ca0473b98ba1c265593328e" show-fields="true" creation-date="12/07/2022 05:31:25" order-index="11" type="entity">
- <layout ax="113" ay="196" awidth="140" aheight="160" x="113" y="196" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="d67f53c5ca1447debb3f73a7e49e3df0" iid="e4aa7012a86b4ba085a8343bb695207e" creation-date="12/07/2022 05:32:05" order-index="12" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="183" y1="356" x2="337" y2="629" start-border-pos="0.625" end-border-pos="0.125" start-local-pos="70" end-local-pos="70" name-position="0,20">
- <points>
- <point x="183" y="356" />
- <point x="337" y="629" />
- </points>
- </layout>
- <relation from="cc386eb15db74f10b73070cf12b705c3" from-iid="b14f58981ca0473b98ba1c265593328e" to="d377c2fa19bc467cbe34ff3f15c549a3" to-iid="87f252a57229403092943f80bece1a1f" />
- </item>
- <item id="c4696775bd4e4f9598ebc727b45f61de" iid="4cceea159df2411aa225e40899d73ea9" show-fields="true" creation-date="12/07/2022 05:36:04" order-index="13" type="entity">
- <layout ax="933" ay="612.584" awidth="140" aheight="160" x="933" y="612.584" width="140" height="160" />
- <classifier />
- <class />
- </item>
- <item id="8f2fdc4eac3347c6aef041212c87450f" iid="37aedd029782427397ae9d6fd73beb8f" creation-date="12/07/2022 05:36:39" order-index="14" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="253" y1="276" x2="933" y2="693" start-border-pos="0.375" end-border-pos="0.875" start-local-pos="80" end-local-pos="80" name-position="0,20">
- <points>
- <point x="253" y="276" />
- <point x="486.5" y="470" />
- <point x="933" y="693" />
- </points>
- </layout>
- <relation from="cc386eb15db74f10b73070cf12b705c3" from-iid="b14f58981ca0473b98ba1c265593328e" to="c4696775bd4e4f9598ebc727b45f61de" to-iid="4cceea159df2411aa225e40899d73ea9" />
- </item>
- <item id="87a4070a7efd4a7cacc0ffe79be90c37" iid="6ebb3320e41c452da26ac78ef5e1ea26" creation-date="12/07/2022 05:36:48" order-index="15" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="464" y1="276" x2="933" y2="693" start-border-pos="0.375" end-border-pos="0.875" start-local-pos="80" end-local-pos="80" name-position="0,20">
- <points>
- <point x="464" y="276" />
- <point x="587" y="418" />
- <point x="933" y="693" />
- </points>
- </layout>
- <relation from="8b29087b94bf45638ee558e40d9557a2" from-iid="719b10c594d54e349291bf5a37b362a1" to="c4696775bd4e4f9598ebc727b45f61de" to-iid="4cceea159df2411aa225e40899d73ea9" />
- </item>
- <item id="00b50fb61c9e483f8ebfe983b59431f5" iid="b066fd42032d42c189e34deafca116cc" creation-date="12/07/2022 05:36:56" order-index="16" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="658" y1="356" x2="933" y2="693" start-border-pos="0.625" end-border-pos="0.875" start-local-pos="70" end-local-pos="80" name-position="0,20">
- <points>
- <point x="658" y="356" />
- <point x="933" y="693" />
- </points>
- </layout>
- <relation from="f21f229a93cf43959ff951a632606fb4" from-iid="eb612d43148f4eb8822eacbbea082946" to="c4696775bd4e4f9598ebc727b45f61de" to-iid="4cceea159df2411aa225e40899d73ea9" />
- </item>
- <item id="561f132758b34694baf9ea6c8981d7e2" iid="ef38513b12a04b438af8fafefa2461ee" creation-date="12/07/2022 05:37:04" order-index="17" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="922" y1="356" x2="933" y2="693" start-border-pos="0.625" end-border-pos="0.875" start-local-pos="70" end-local-pos="80" name-position="0,20">
- <points>
- <point x="922" y="356" />
- <point x="933" y="693" />
- </points>
- </layout>
- <relation from="77b9473d5f6e4f7cb2d1f69a09b8f7b5" from-iid="922f8ff02e1049c6b0be4ed382467f82" to="c4696775bd4e4f9598ebc727b45f61de" to-iid="4cceea159df2411aa225e40899d73ea9" />
- </item>
- <item id="22e1fbb433fb482b952d4a8f0bca33ca" iid="847a5c7aafcc40f7b728e5a833268cd2" creation-date="12/07/2022 05:38:14" order-index="18" type="relation">
- <layout line-style="oblique" lock-start-point="true" lock-end-point="true" lock-to-fields="false" auto-path="" x1="933" y1="693" x2="407" y2="709" start-border-pos="0.875" end-border-pos="0.375" start-local-pos="80" end-local-pos="80" name-position="0,20">
- <points>
- <point x="933" y="693" />
- <point x="407" y="709" />
- </points>
- </layout>
- <relation from="c4696775bd4e4f9598ebc727b45f61de" from-iid="4cceea159df2411aa225e40899d73ea9" to="d377c2fa19bc467cbe34ff3f15c549a3" to-iid="87f252a57229403092943f80bece1a1f" />
- </item>
- </layer>
- </diagram>
- </model>
- <model id="p1bdc329415a849049d99e36009b83f36_450692072" name="Notification" namespace="" order-index="5">
- <meta>
- <authors>
- <author>Dalibor Votruba</author>
- </authors>
- <description />
- <creation-date>11/08/2022 05:10:27</creation-date>
- <change-date>01/01/0001 00:00:00</change-date>
- <revision-count>0</revision-count>
- <version />
- </meta>
- <abstract-items />
- <sub-models />
- </model>
- </sub-models>
- </model>
- </sub-models>
- </model>
- </models>
- </sim-project>
|