QLiberace.simp 403 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926
  1. <?xml version="1.0" encoding="utf-8" standalone="yes"?>
  2. <sim-project version="13.85" multi-file="no" uid="simp2ea5f8008af94134b20730821dbeba15">
  3. <meta>
  4. <name>QLiberace</name>
  5. <authors>Dalibor Votruba</authors>
  6. <description>SAAS based functional processing (automatic) backend with payments</description>
  7. </meta>
  8. <counters models="18">
  9. <entity-names>
  10. <counter>
  11. <item-type stereotype="component" type-id="component" type="Component" />
  12. <value>5</value>
  13. </counter>
  14. <counter>
  15. <item-type type-id="erd-entity" type="Entity" />
  16. <value>26</value>
  17. </counter>
  18. <counter>
  19. <item-type type-id="class" type="Class" />
  20. <value>16</value>
  21. </counter>
  22. <counter>
  23. <item-type type-id="object" type="Object" />
  24. <value>7</value>
  25. </counter>
  26. <counter>
  27. <item-type type-id="drawing-line" type="Line" />
  28. <value>1</value>
  29. </counter>
  30. <counter>
  31. <item-type type-id="flowchart-start-end" type="Start End" />
  32. <value>3</value>
  33. </counter>
  34. <counter>
  35. <item-type type-id="flowchart-process" type="Process" />
  36. <value>5</value>
  37. </counter>
  38. <counter>
  39. <item-type type-id="flowchart-data" type="Data" />
  40. <value>10</value>
  41. </counter>
  42. <counter>
  43. <item-type type-id="flowchart-transfer" type="Transfer" />
  44. <value>5</value>
  45. </counter>
  46. <counter>
  47. <item-type type-id="flowchart-predefined-process" type="Predefined Process" />
  48. <value>1</value>
  49. </counter>
  50. <counter>
  51. <item-type type-id="flowchart-decision" type="Decision" />
  52. <value>4</value>
  53. </counter>
  54. <counter>
  55. <item-type type-id="flowchart-summing-junction" type="Summing Junction" />
  56. <value>1</value>
  57. </counter>
  58. </entity-names>
  59. <entity-ids>
  60. <counter>
  61. <item-type type-id="group" type="Group" />
  62. <value>2881</value>
  63. </counter>
  64. <counter>
  65. <item-type type-id="component" type="Component" />
  66. <value>6</value>
  67. </counter>
  68. <counter>
  69. <item-type type-id="relationship" type="Association" />
  70. <value>19</value>
  71. </counter>
  72. <counter>
  73. <item-type type-id="property" type="Property" />
  74. <value>15</value>
  75. </counter>
  76. <counter>
  77. <item-type type-id="diagram-description" type="Diagram Description" />
  78. <value>2</value>
  79. </counter>
  80. <counter>
  81. <item-type type-id="requirement" type="Requirement" />
  82. <value>15</value>
  83. </counter>
  84. <counter>
  85. <item-type type-id="erd-entity" type="Entity" />
  86. <value>29</value>
  87. </counter>
  88. <counter>
  89. <item-type type-id="erd-relationship" type="Relationship" />
  90. <value>70</value>
  91. </counter>
  92. <counter>
  93. <item-type type-id="universal-connector" type="Universal Connector" />
  94. <value>26</value>
  95. </counter>
  96. <counter>
  97. <item-type type-id="class" type="Class" />
  98. <value>17</value>
  99. </counter>
  100. <counter>
  101. <item-type type-id="object" type="Object" />
  102. <value>8</value>
  103. </counter>
  104. <counter>
  105. <item-type type-id="template-parameter" type="Template Parameter" />
  106. <value>29</value>
  107. </counter>
  108. <counter>
  109. <item-type type-id="generalization" type="Generalization" />
  110. <value>15</value>
  111. </counter>
  112. <counter>
  113. <item-type type-id="dependency" type="Dependency" />
  114. <value>2</value>
  115. </counter>
  116. <counter>
  117. <item-type type-id="drawing-line" type="Line" />
  118. <value>12</value>
  119. </counter>
  120. <counter>
  121. <item-type type-id="flowchart-start-end" type="Start End" />
  122. <value>24</value>
  123. </counter>
  124. <counter>
  125. <item-type type-id="flowchart-process" type="Process" />
  126. <value>6</value>
  127. </counter>
  128. <counter>
  129. <item-type type-id="flowchart-flow" type="Flow" />
  130. <value>26</value>
  131. </counter>
  132. <counter>
  133. <item-type type-id="flowchart-data" type="Data" />
  134. <value>11</value>
  135. </counter>
  136. <counter>
  137. <item-type type-id="flowchart-transfer" type="Transfer" />
  138. <value>23</value>
  139. </counter>
  140. <counter>
  141. <item-type type-id="flowchart-predefined-process" type="Predefined Process" />
  142. <value>2</value>
  143. </counter>
  144. <counter>
  145. <item-type type-id="flowchart-decision" type="Decision" />
  146. <value>5</value>
  147. </counter>
  148. <counter>
  149. <item-type type-id="flowchart-summing-junction" type="Summing Junction" />
  150. <value>13</value>
  151. </counter>
  152. <counter>
  153. <item-type type-id="comment" type="Comment" />
  154. <value>2</value>
  155. </counter>
  156. <counter>
  157. <item-type type-id="containment" type="Containment" />
  158. <value>6</value>
  159. </counter>
  160. </entity-ids>
  161. <diagrams>
  162. <counter>
  163. <type>SoftwareIdeasModeler.Core.Diagrams.UmlDiagrams.UmlComponentDiagram</type>
  164. <value>1</value>
  165. </counter>
  166. <counter>
  167. <type>SoftwareIdeasModeler.Core.Diagrams.Other.RequirementDiagram</type>
  168. <value>1</value>
  169. </counter>
  170. <counter>
  171. <type>SoftwareIdeasModeler.Core.Diagrams.Other.EntityRelationshipDiagram</type>
  172. <value>4</value>
  173. </counter>
  174. <counter>
  175. <type>SoftwareIdeasModeler.Core.Diagrams.UmlDiagrams.UmlObjectDiagram</type>
  176. <value>7</value>
  177. </counter>
  178. <counter>
  179. <type>SoftwareIdeasModeler.Core.Diagrams.Other.FlowchartDiagram</type>
  180. <value>1</value>
  181. </counter>
  182. </diagrams>
  183. <fields>
  184. <counter>
  185. <type>SoftwareIdeasModeler.Core.DiagramItems.Erd.ErdEntityAttribute</type>
  186. <value>247</value>
  187. </counter>
  188. <counter>
  189. <type>SoftwareIdeasModeler.Core.DiagramItems.Erd.ErdEntityIndex</type>
  190. <value>8</value>
  191. </counter>
  192. <counter>
  193. <type>SoftwareIdeasModeler.Core.DiagramItems.Fields.OperationField</type>
  194. <value>36</value>
  195. </counter>
  196. </fields>
  197. </counters>
  198. <alias-groups />
  199. <management uid="md-64da5925cccf40f881cbd349de3ac60c" name="" task-id-sequence="0">
  200. <working-schedule uid="ws-2807cc5250c044ec85bb85dcc5f7f146" hours="8" monday="8" tuesday="8" wednesday="8" thursday="8" friday="8" saturday="0" sunday="0" />
  201. <persons>
  202. <person id="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57">
  203. <first-name>Dalibor</first-name>
  204. <last-name>Votruba</last-name>
  205. <role />
  206. <e-mail />
  207. <phone-number />
  208. <description />
  209. <color>#00000000</color>
  210. <working-schedule uid="ws-8d5061554bea46fba84de4f496d6d5f1" hours="8" monday="8" tuesday="8" wednesday="8" thursday="8" friday="8" saturday="0" sunday="0" />
  211. </person>
  212. </persons>
  213. <teams />
  214. <sprints />
  215. <projects />
  216. <modules />
  217. <tasks />
  218. <to-dos />
  219. </management>
  220. <glossary id="glsr-c62334eae23c4f22971de71d88128a88" />
  221. <types default="UML">
  222. <type-sets>
  223. <type-set file="MsSqlTypes.xml" />
  224. <type-set file="UmlTypes.xml" />
  225. </type-sets>
  226. <custom-types>
  227. <parameters />
  228. <types>
  229. <type id="Class:2626a7fd504946ccaa1eb090b6d27d0d" name="Base" class-ref="2626a7fd504946ccaa1eb090b6d27d0d" />
  230. <type id="Class:874b9f152e0b445dbcfeee89df6a5ea4" name="Processor" class-ref="874b9f152e0b445dbcfeee89df6a5ea4" />
  231. <type id="Class:84ab40101b0b4e5caa621287dc10fd91" name="Notification" class-ref="84ab40101b0b4e5caa621287dc10fd91" />
  232. <type id="datetime (MsSql.datetime)" name="datetime (MsSql.datetime)" />
  233. <type id="Class:7546dafc2b0d406bb9cf489c5eeb4aff" name="Customer" class-ref="7546dafc2b0d406bb9cf489c5eeb4aff" />
  234. <type id="Class:cb92b4b50dc847aebfdbd90ce365a1eb" name="Invoice" class-ref="cb92b4b50dc847aebfdbd90ce365a1eb" />
  235. <type id="Class:d0073f5bfa1e416a993d396a5c5f3719" name="CustomerService" class-ref="d0073f5bfa1e416a993d396a5c5f3719" />
  236. <type id="nvarchar (MsSql.nvarchar)" name="nvarchar (MsSql.nvarchar)" />
  237. <type id="NULL" name="NULL" />
  238. </types>
  239. </custom-types>
  240. </types>
  241. <items>
  242. <item id="4c0b5740d5454593b2f30e99077948f6" cid="PROP013" type="property" owner="26f7ba623f254dd28b60add6ba05099c" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:26:55" visibility="private">
  243. <structural-feature type="Notification" type-id="Class:84ab40101b0b4e5caa621287dc10fd91" />
  244. </item>
  245. <item id="132ce45236e54d6da05ae53d64712729" cid="PROP002" type="property" owner="7268ad1b0bd249218475144e6941ccdf" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:42:51" visibility="private">
  246. <structural-feature type="Customer" type-id="Class:7546dafc2b0d406bb9cf489c5eeb4aff" />
  247. </item>
  248. <item id="3ea00702610044d585111749ee746ce0" cid="PROP008" type="property" owner="cc2cc1a81f0b46d9990261d829151310" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:06:13" visibility="private">
  249. <structural-feature type="Base" type-id="Class:2626a7fd504946ccaa1eb090b6d27d0d" />
  250. </item>
  251. <item id="de0957d8d7ac42eab57e579c2cefbf47" cid="PROP005" type="property" owner="802906c103994cfb8c5117077f30e22a" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:43:31" visibility="private">
  252. <structural-feature type="Customer" type-id="Class:7546dafc2b0d406bb9cf489c5eeb4aff" />
  253. </item>
  254. <item id="7e127fd6ffb44997a6ed00e09680e29c" cid="PROP007" type="property" owner="cc2cc1a81f0b46d9990261d829151310" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:06:13" visibility="private">
  255. <structural-feature type="Processor" type-id="Class:874b9f152e0b445dbcfeee89df6a5ea4" />
  256. </item>
  257. <item id="002883f71fbc4324bbd1efa19cdbd1a6" cid="PROP003" type="property" owner="2037f7bd032e4fa3a1d8d99f1cd1ea27" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:43:08" visibility="private">
  258. <structural-feature type="Invoice" type-id="Class:cb92b4b50dc847aebfdbd90ce365a1eb" />
  259. </item>
  260. <item id="49ad3ceea0bb4157b557e21e2eb7c0b9" cid="PROP006" type="property" owner="802906c103994cfb8c5117077f30e22a" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:43:31" visibility="private">
  261. <structural-feature type="Base" type-id="Class:2626a7fd504946ccaa1eb090b6d27d0d" />
  262. </item>
  263. <item id="6d22af3498a54020b1085246698cc0a1" cid="PROP014" type="property" owner="26f7ba623f254dd28b60add6ba05099c" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:26:55" visibility="private">
  264. <structural-feature type="Processor" type-id="Class:874b9f152e0b445dbcfeee89df6a5ea4" />
  265. </item>
  266. <item id="973f3350bf004251bfd79b861f6bfe4f" cid="ELEM001" type="template-parameter" name="TRepository" owner="7399b648d3cb40019de69d5f8ea9f2b9" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:52:13">
  267. <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">
  268. <text-style type="name" color="#555555" font="Segoe UI;11.25;B" />
  269. <text-style type="part-header" color="#1E1E1E" font="Verdana;9;I" />
  270. <text-style type="text" color="#555555" font="Segoe UI;9.75;" horizontal-alignment="left" />
  271. <text-style type="tagged-value" color="#555555" font="Segoe UI;9.75;" />
  272. <text-style type="stereotype" color="#555555" font="Segoe UI;9;I" />
  273. <background type="solid" colors="#F2F2F2,#F2F2F2" />
  274. <border color="#555555" width="2" />
  275. <label-connector color="#80000000" dash-style="Dash" />
  276. <alternate-styles>
  277. <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">
  278. <text-style type="name" color="#E9E9E9" font="Segoe UI;11.25;B" />
  279. <text-style type="part-header" color="#1E1E1E" font="Verdana;9;I" />
  280. <text-style type="text" color="#E9E9E9" font="Segoe UI;9.75;" horizontal-alignment="left" />
  281. <text-style type="tagged-value" color="#E9E9E9" font="Segoe UI;9.75;" />
  282. <text-style type="stereotype" color="#E9E9E9" font="Segoe UI;9;I" />
  283. <background type="solid" colors="#203D85,#203D85" />
  284. <border color="#203D85" width="2" />
  285. <label-connector color="#80000000" dash-style="Dash" />
  286. </alternate-style>
  287. </alternate-styles>
  288. </style>
  289. <template-parameter kind="" />
  290. </item>
  291. <item id="b531bae1520645b58761d8077cac7517" cid="PROP004" type="property" owner="2037f7bd032e4fa3a1d8d99f1cd1ea27" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:43:08" visibility="private">
  292. <structural-feature type="Base" type-id="Class:2626a7fd504946ccaa1eb090b6d27d0d" />
  293. </item>
  294. <item id="93016f98fae440bb88e27fe09172df66" cid="PROP001" type="property" owner="7268ad1b0bd249218475144e6941ccdf" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:42:51" visibility="private">
  295. <structural-feature type="Invoice" type-id="Class:cb92b4b50dc847aebfdbd90ce365a1eb" />
  296. </item>
  297. </items>
  298. <models>
  299. <model id="p90d2274b44184846a11deb852336b134_590513963" name="Concept" namespace="" order-index="1" expanded="true">
  300. <meta>
  301. <authors>
  302. <author> </author>
  303. </authors>
  304. <description />
  305. <creation-date>09/15/2022 15:37:52</creation-date>
  306. <change-date>01/01/0001 00:00:00</change-date>
  307. <revision-count>0</revision-count>
  308. <version />
  309. </meta>
  310. <abstract-items />
  311. <sub-models>
  312. <model id="p542a3c57ccde4d58987138df66177da3_862826318" name="Modules" namespace="" order-index="3" expanded="true">
  313. <meta>
  314. <authors>
  315. <author>Dalibor Votruba</author>
  316. </authors>
  317. <description />
  318. <creation-date>11/08/2022 05:34:53</creation-date>
  319. <change-date>01/01/0001 00:00:00</change-date>
  320. <revision-count>0</revision-count>
  321. <version />
  322. </meta>
  323. <abstract-items />
  324. <sub-models>
  325. <model id="pc1208df130fa44ef940a182832e978c6_300449290" name="Processor" namespace="" order-index="1" expanded="true">
  326. <meta>
  327. <authors>
  328. <author>Dalibor Votruba</author>
  329. </authors>
  330. <description />
  331. <creation-date>11/08/2022 05:35:09</creation-date>
  332. <change-date>01/01/0001 00:00:00</change-date>
  333. <revision-count>0</revision-count>
  334. <version />
  335. </meta>
  336. <abstract-items />
  337. <sub-models />
  338. <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">
  339. <style>
  340. <background-color index="1" color="#FFFFFFFF" />
  341. <background-color index="2" color="#FFFFFFFF" />
  342. <background-type type="solid" />
  343. </style>
  344. <meta>
  345. <authors>
  346. <author>Dalibor Votruba</author>
  347. </authors>
  348. <description />
  349. <creation-date>11/08/2022 05:35:52</creation-date>
  350. <change-date>11/08/2022 08:26:45</change-date>
  351. <revision-count>0</revision-count>
  352. <version>1.0.0.0</version>
  353. </meta>
  354. <abstract-items>
  355. <item id="dd466577b156451eb42656922ef465d2" cid="FCF022" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:09:02" from="2210bf4bcecb466c9048a1ebcee9986e" to="3b16a5ecb5e843ad8821df5d5b356def" />
  356. <item id="f28974847a6b43a18bdb7bca85f91f25" cid="FCDT001" type="flowchart-data" name="QueuePending (Pending)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:38:07" />
  357. <item id="3fe0cdae22ba4e8392ef24d7e62b82e4" cid="ELEM014" type="flowchart-transfer" name="Move to QueueProcessing" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:42:04" />
  358. <item id="78449336c87849d6bede5b22a70ea230" cid="FCF016" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:04:02" from="8b245a2974f743b3998d5d3d8064511b" to="c3dd066406424ec58846202c15b5802e">
  359. <stereotypes>
  360. <stereotype name="true" />
  361. </stereotypes>
  362. <stereotype-instances>
  363. <stereotype id="78449336c87849d6bede5b22a70ea230_true_c" type="true" ref="" />
  364. </stereotype-instances>
  365. </item>
  366. <item id="7da93049cc724cac917b22048bb10488" cid="ELEM025" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:10:34" from="c3dd066406424ec58846202c15b5802e" to="0a8d75b0225f48ce8873c83fedb3a566">
  367. <connector end-cap="arrow" />
  368. </item>
  369. <item id="a4f54b2c54e84fef976364f3dbfb4210" cid="FCDT006" type="flowchart-data" name="QueueProcessing (increment attempt)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 07:56:51" />
  370. <item id="7e8f23f6d3a0443aa03347ed6488c26b" cid="FCF023" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:18:38" from="289390e80cab44c4b29c98b705d51167" to="c8214de2d5ee41d4be8f2b58e6a2d9d8">
  371. <stereotypes>
  372. <stereotype name="false" />
  373. </stereotypes>
  374. <stereotype-instances>
  375. <stereotype id="7e8f23f6d3a0443aa03347ed6488c26b_false_c" type="false" ref="" />
  376. </stereotype-instances>
  377. </item>
  378. <item id="45a5b0fa454549aabcae684f446c1d5e" cid="ELEM018" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:48:59" from="e7a3da1f257b47209ff4d4d6233cb814" to="0a8d75b0225f48ce8873c83fedb3a566">
  379. <connector end-cap="arrow" />
  380. </item>
  381. <item id="0a8d75b0225f48ce8873c83fedb3a566" cid="FCPP001" type="flowchart-predefined-process" name="WriteToStatusHistory" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:47:55" />
  382. <item id="3478bb60839345968effb7d2b21824e1" cid="ELEM019" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:49:46" from="4b7e9545e0b34186b8110e228d20090c" to="3fe0cdae22ba4e8392ef24d7e62b82e4">
  383. <connector end-cap="arrow" />
  384. </item>
  385. <item id="b852179671164649bf433871094392f9" cid="FCF007" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:50:13" from="4b7e9545e0b34186b8110e228d20090c" to="e7a3da1f257b47209ff4d4d6233cb814" />
  386. <item id="289390e80cab44c4b29c98b705d51167" cid="FCDC004" type="flowchart-decision" name="Check if expired" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:18:09" />
  387. <item id="8b245a2974f743b3998d5d3d8064511b" cid="FCDC001" type="flowchart-decision" name="Task ends successfull" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:51:31" />
  388. <item id="e75baa3e64f747a591f1d4d6319a7c48" cid="FCF025" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:22:16" from="68b42662151342d89f24fcf1628e49a6" to="b7e7b4b9036f42768b84373fda61eee7" />
  389. <item id="dbe83edfd94347faa3189afa0f12d5f9" cid="FCF020" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:08:17" from="59c4c4fbe9ce476a986bdcbeb779cc75" to="2210bf4bcecb466c9048a1ebcee9986e" />
  390. <item id="64b625b7f65d4fdea8b55ae8f7d2da70" cid="FCF024" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:21:50" from="289390e80cab44c4b29c98b705d51167" to="68b42662151342d89f24fcf1628e49a6">
  391. <stereotypes>
  392. <stereotype name="true" />
  393. </stereotypes>
  394. <stereotype-instances>
  395. <stereotype id="64b625b7f65d4fdea8b55ae8f7d2da70_true_c" type="true" ref="" />
  396. </stereotype-instances>
  397. </item>
  398. <item id="7d8cf91331de4ac78243f85d98bac60c" cid="ELEM013" type="flowchart-start-end" name="Start" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:36:56" />
  399. <item id="7a25f63262994a4d93081c8cfa69c389" cid="FCDT004" type="flowchart-data" name="QueuePending (set affinity to worker)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:45:32" />
  400. <item id="68b42662151342d89f24fcf1628e49a6" cid="FCDT010" type="flowchart-data" name="QueuePending (Expired)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:19:09" />
  401. <item id="af4dfd8ccddb47bfba620c65a1d4e1b2" cid="FCDC003" type="flowchart-decision" name="attempt max count exceed" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:01:01" />
  402. <item id="aa60143bc9c0413aad4c55bcca89b2ea" cid="FCF015" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:02:02" from="5d9c2bc68ff249cdb75891c025eb8e8a" to="8b245a2974f743b3998d5d3d8064511b" />
  403. <item id="957ad59b2e744cdebd9317ebc81182be" cid="ELEM016" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:48:27" from="f28974847a6b43a18bdb7bca85f91f25" to="0a8d75b0225f48ce8873c83fedb3a566">
  404. <connector end-cap="arrow" />
  405. </item>
  406. <item id="db2c81d9b11d467494645052fa30e42c" cid="CMT001" type="comment" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:26:45">
  407. <comment>Statuses
  408. - Pending
  409. - Assigned
  410. - Working
  411. - Success
  412. - Failed
  413. - Expired
  414. </comment>
  415. </item>
  416. <item id="f6977b36be114cc0bdb54f411e6a7c42" cid="FCF014" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:01:55" from="af4dfd8ccddb47bfba620c65a1d4e1b2" to="5d9c2bc68ff249cdb75891c025eb8e8a">
  417. <stereotypes>
  418. <stereotype name="false" />
  419. </stereotypes>
  420. <stereotype-instances>
  421. <stereotype id="f6977b36be114cc0bdb54f411e6a7c42_false_c" type="false" ref="" />
  422. </stereotype-instances>
  423. </item>
  424. <item id="e7a3da1f257b47209ff4d4d6233cb814" cid="FCDT003" type="flowchart-data" name="QueueProcessing (Working)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:43:45" />
  425. <item id="8cd90bac9b51400eabe3ccf9158124b2" cid="FCDT008" type="flowchart-data" name="QueueProcessing (Failed)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:02:31" />
  426. <item id="b7e7b4b9036f42768b84373fda61eee7" cid="ELEM021" type="flowchart-transfer" name="Move to QueueFailed" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:04:58" />
  427. <item id="c83cb2481a1a456a921c0096e6e7f05f" cid="ELEM024" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:10:24" from="8cd90bac9b51400eabe3ccf9158124b2" to="0a8d75b0225f48ce8873c83fedb3a566">
  428. <connector end-cap="arrow" />
  429. </item>
  430. <item id="59c4c4fbe9ce476a986bdcbeb779cc75" cid="ELEM022" type="flowchart-transfer" name="Move to QueueDone" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:05:46" />
  431. <item id="ce1eebce4c2d4c618cd34d7ee6b5c884" cid="FCF002" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:41:10" from="c45a2b00a4534a4993d3d493d08ea362" to="f28974847a6b43a18bdb7bca85f91f25" />
  432. <item id="e1d037ea46c843a482d991d95f8d76f8" cid="FCF019" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:06:24" from="c3dd066406424ec58846202c15b5802e" to="59c4c4fbe9ce476a986bdcbeb779cc75" />
  433. <item id="f72aa32dc60248a7bb9dacc3e5e5e92d" cid="FCF011" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 07:57:36" from="e7a3da1f257b47209ff4d4d6233cb814" to="5d9c2bc68ff249cdb75891c025eb8e8a" />
  434. <item id="c9aeaf88d97b49c389d2eab5e6f941a7" cid="FCF021" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:08:23" from="b7e7b4b9036f42768b84373fda61eee7" to="2210bf4bcecb466c9048a1ebcee9986e" />
  435. <item id="9f89c39da61a4230991dcdeec3da8574" cid="FCF017" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:04:34" from="af4dfd8ccddb47bfba620c65a1d4e1b2" to="8cd90bac9b51400eabe3ccf9158124b2">
  436. <stereotypes>
  437. <stereotype name="true" />
  438. </stereotypes>
  439. <stereotype-instances>
  440. <stereotype id="9f89c39da61a4230991dcdeec3da8574_true_c" type="true" ref="" />
  441. </stereotype-instances>
  442. </item>
  443. <item id="0378ad126b2f450db622c055a6078672" cid="ELEM015" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:46:37" from="c8214de2d5ee41d4be8f2b58e6a2d9d8" to="7a25f63262994a4d93081c8cfa69c389">
  444. <connector end-cap="arrow" />
  445. </item>
  446. <item id="5d9c2bc68ff249cdb75891c025eb8e8a" cid="FCP005" type="flowchart-process" name="ProcessingTask" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 07:57:07" />
  447. <item id="4b7e9545e0b34186b8110e228d20090c" cid="FCDT002" type="flowchart-data" name="QueuePending (Assigned)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:42:37" />
  448. <item id="c3dd066406424ec58846202c15b5802e" cid="FCDT009" type="flowchart-data" name="QueueProcessing (Success)" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:03:23" />
  449. <item id="25584f5ba79b406f9e5f2782aba3e826" cid="FCF004" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:46:49" from="c8214de2d5ee41d4be8f2b58e6a2d9d8" to="4b7e9545e0b34186b8110e228d20090c" />
  450. <item id="6a1f6f18671d4b32a901cebf7d2d2518" cid="ELEM017" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:48:36" from="4b7e9545e0b34186b8110e228d20090c" to="0a8d75b0225f48ce8873c83fedb3a566">
  451. <connector end-cap="arrow" />
  452. </item>
  453. <item id="3b16a5ecb5e843ad8821df5d5b356def" cid="ELEM023" type="flowchart-start-end" name="End" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:08:47" />
  454. <item id="2210bf4bcecb466c9048a1ebcee9986e" cid="ELEM012" type="flowchart-summing-junction" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:07:55" />
  455. <item id="c8214de2d5ee41d4be8f2b58e6a2d9d8" cid="FCP002" type="flowchart-process" name="AssignProcessing" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:40:37" />
  456. <item id="4d44a5d6c1134d97a781f2f807eb64dc" cid="ELEM020" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 07:59:42" from="5d9c2bc68ff249cdb75891c025eb8e8a" to="a4f54b2c54e84fef976364f3dbfb4210">
  457. <connector end-cap="arrow" />
  458. </item>
  459. <item id="0b6bd0bcca044fa58ebccb9d8a7454de" cid="FCF001" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:37:59" from="7d8cf91331de4ac78243f85d98bac60c" to="c45a2b00a4534a4993d3d493d08ea362" />
  460. <item id="c45a2b00a4534a4993d3d493d08ea362" cid="FCP001" type="flowchart-process" name="Create" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:37:22" />
  461. <item id="abac9c9e94da489ba43d2e97bd93ea4d" cid="FCF018" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:06:18" from="8cd90bac9b51400eabe3ccf9158124b2" to="b7e7b4b9036f42768b84373fda61eee7" />
  462. <item id="ebc5fe070a764339b4d0069e473b2d63" cid="FCF013" type="flowchart-flow" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 08:01:36" from="8b245a2974f743b3998d5d3d8064511b" to="af4dfd8ccddb47bfba620c65a1d4e1b2">
  463. <stereotypes>
  464. <stereotype name="false" />
  465. </stereotypes>
  466. <stereotype-instances>
  467. <stereotype id="ebc5fe070a764339b4d0069e473b2d63_false_c" type="false" ref="" />
  468. </stereotype-instances>
  469. </item>
  470. </abstract-items>
  471. <layer id="b5873808f2244247b4e2457577f30d25" name="Default" visible="true" enabled="true" locked="false">
  472. <item id="7d8cf91331de4ac78243f85d98bac60c" iid="ff5fd1ae94d140ce8b139e2f17caa9e9" creation-date="11/08/2022 05:36:56" order-index="0" type="entity">
  473. <layout ax="453.3688" ay="61.47083" awidth="150" aheight="60" x="450" y="55" width="150" height="60" />
  474. </item>
  475. <item id="c45a2b00a4534a4993d3d493d08ea362" iid="822f7dd12acb411789313a82757bfa04" creation-date="11/08/2022 05:37:22" order-index="1" type="entity">
  476. <layout ax="453.825" ay="166.7657" awidth="150" aheight="60" x="450" y="160" width="150" height="60" />
  477. </item>
  478. <item id="0b6bd0bcca044fa58ebccb9d8a7454de" iid="a861118daace463192ae8c24f1642d0c" creation-date="11/08/2022 05:37:59" order-index="2" type="relation">
  479. <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">
  480. <points>
  481. <point x="528" y="121" />
  482. <point x="529" y="167" />
  483. </points>
  484. </layout>
  485. <relation from="7d8cf91331de4ac78243f85d98bac60c" from-iid="ff5fd1ae94d140ce8b139e2f17caa9e9" to="c45a2b00a4534a4993d3d493d08ea362" to-iid="822f7dd12acb411789313a82757bfa04" />
  486. </item>
  487. <item id="f28974847a6b43a18bdb7bca85f91f25" iid="a4d3ebbf065c4f18bbad5165480b5a4d" creation-date="11/08/2022 05:38:07" order-index="3" type="entity">
  488. <layout ax="454.3679" ay="272.0625" awidth="150" aheight="60" x="450" y="265" width="150" height="60" />
  489. </item>
  490. <item id="c8214de2d5ee41d4be8f2b58e6a2d9d8" iid="737a5330317e4263921e89f793006b89" creation-date="11/08/2022 05:40:37" order-index="5" type="entity">
  491. <layout ax="457.0154" ay="694.3477" awidth="150" aheight="60" x="452" y="687" width="150" height="60" />
  492. </item>
  493. <item id="ce1eebce4c2d4c618cd34d7ee6b5c884" iid="d5cc0552a2e246d7aa11990a4de5cf91" creation-date="11/08/2022 05:41:10" order-index="6" type="relation">
  494. <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">
  495. <points>
  496. <point x="529" y="227" />
  497. <point x="529" y="272" />
  498. </points>
  499. </layout>
  500. <relation from="c45a2b00a4534a4993d3d493d08ea362" from-iid="822f7dd12acb411789313a82757bfa04" to="f28974847a6b43a18bdb7bca85f91f25" to-iid="a4d3ebbf065c4f18bbad5165480b5a4d" />
  501. </item>
  502. <item id="3fe0cdae22ba4e8392ef24d7e62b82e4" iid="366d090b01d54006a43d8515d0047e47" creation-date="11/08/2022 05:42:04" order-index="8" type="entity">
  503. <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" />
  504. </item>
  505. <item id="4b7e9545e0b34186b8110e228d20090c" iid="73c55ab8875d4d35b38bc85135bfd114" creation-date="11/08/2022 05:42:37" order-index="9" type="entity">
  506. <layout ax="457.7886" ay="799.6015" awidth="150" aheight="60" x="452" y="792" width="150" height="60" />
  507. </item>
  508. <item id="e7a3da1f257b47209ff4d4d6233cb814" iid="57d5a47d69ea41d0bd77fac0f40c8310" creation-date="11/08/2022 05:43:45" order-index="10" type="entity">
  509. <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" />
  510. </item>
  511. <item id="7a25f63262994a4d93081c8cfa69c389" iid="ce70f6b6cfc94ffb990c524db0ea47ae" creation-date="11/08/2022 05:45:32" order-index="11" type="entity">
  512. <layout ax="760.4237" ay="664.1959" awidth="357" aheight="124" x="757" y="655" width="357" height="124" rotation-center="-103.5,-32" />
  513. </item>
  514. <item id="0378ad126b2f450db622c055a6078672" iid="dd433dcc9e194928947587aeb16d1e86" creation-date="11/08/2022 05:46:37" order-index="12" type="relation">
  515. <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">
  516. <points>
  517. <point x="607" y="724" />
  518. <point x="791" y="726" />
  519. </points>
  520. </layout>
  521. <relation from="c8214de2d5ee41d4be8f2b58e6a2d9d8" from-iid="737a5330317e4263921e89f793006b89" to="7a25f63262994a4d93081c8cfa69c389" to-iid="ce70f6b6cfc94ffb990c524db0ea47ae" />
  522. </item>
  523. <item id="25584f5ba79b406f9e5f2782aba3e826" iid="373bcd5bec7141e99801d2b8abff71bc" creation-date="11/08/2022 05:46:49" order-index="13" type="relation">
  524. <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">
  525. <points>
  526. <point x="532" y="754" />
  527. <point x="533" y="800" />
  528. </points>
  529. </layout>
  530. <relation from="c8214de2d5ee41d4be8f2b58e6a2d9d8" from-iid="737a5330317e4263921e89f793006b89" to="4b7e9545e0b34186b8110e228d20090c" to-iid="73c55ab8875d4d35b38bc85135bfd114" />
  531. </item>
  532. <item id="0a8d75b0225f48ce8873c83fedb3a566" iid="b93f0ce5ff5e4bc48ac7135629f09399" creation-date="11/08/2022 05:47:55" order-index="16" type="entity">
  533. <layout ax="54.86707" ay="270.0109" awidth="276" aheight="60" x="50" y="265" width="276" height="60" rotation-center="-63,0" />
  534. </item>
  535. <item id="957ad59b2e744cdebd9317ebc81182be" iid="30cb3788a9814421884f6236cdc8e925" creation-date="11/08/2022 05:48:27" order-index="17" type="relation">
  536. <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">
  537. <points>
  538. <point x="470" y="301" />
  539. <point x="331" y="300" />
  540. </points>
  541. </layout>
  542. <relation from="f28974847a6b43a18bdb7bca85f91f25" from-iid="a4d3ebbf065c4f18bbad5165480b5a4d" to="0a8d75b0225f48ce8873c83fedb3a566" to-iid="b93f0ce5ff5e4bc48ac7135629f09399" />
  543. </item>
  544. <item id="6a1f6f18671d4b32a901cebf7d2d2518" iid="579ccd3e0a3f4f269f59ed9d7df1c457" creation-date="11/08/2022 05:48:36" order-index="18" type="relation">
  545. <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">
  546. <points>
  547. <point x="473" y="830" />
  548. <point x="331" y="300" />
  549. </points>
  550. </layout>
  551. <relation from="4b7e9545e0b34186b8110e228d20090c" from-iid="73c55ab8875d4d35b38bc85135bfd114" to="0a8d75b0225f48ce8873c83fedb3a566" to-iid="b93f0ce5ff5e4bc48ac7135629f09399" />
  552. </item>
  553. <item id="45a5b0fa454549aabcae684f446c1d5e" iid="225562176ff543d2890e26c3895793b0" creation-date="11/08/2022 05:48:59" order-index="19" type="relation">
  554. <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">
  555. <points>
  556. <point x="446" y="947" />
  557. <point x="193" y="330" />
  558. </points>
  559. </layout>
  560. <relation from="e7a3da1f257b47209ff4d4d6233cb814" from-iid="57d5a47d69ea41d0bd77fac0f40c8310" to="0a8d75b0225f48ce8873c83fedb3a566" to-iid="b93f0ce5ff5e4bc48ac7135629f09399" />
  561. </item>
  562. <item id="3478bb60839345968effb7d2b21824e1" iid="2f81f4c777ce477ab2454e9d90cb99d2" creation-date="11/08/2022 05:49:46" order-index="20" type="relation">
  563. <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">
  564. <points>
  565. <point x="593" y="830" />
  566. <point x="769" y="913" />
  567. </points>
  568. </layout>
  569. <relation from="4b7e9545e0b34186b8110e228d20090c" from-iid="73c55ab8875d4d35b38bc85135bfd114" to="3fe0cdae22ba4e8392ef24d7e62b82e4" to-iid="366d090b01d54006a43d8515d0047e47" />
  570. </item>
  571. <item id="b852179671164649bf433871094392f9" iid="de7f8337f869416da91b39be7b23f5db" creation-date="11/08/2022 05:50:13" order-index="21" type="relation">
  572. <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">
  573. <points>
  574. <point x="533" y="860" />
  575. <point x="534" y="917" />
  576. </points>
  577. </layout>
  578. <relation from="4b7e9545e0b34186b8110e228d20090c" from-iid="73c55ab8875d4d35b38bc85135bfd114" to="e7a3da1f257b47209ff4d4d6233cb814" to-iid="57d5a47d69ea41d0bd77fac0f40c8310" />
  579. </item>
  580. <item id="8b245a2974f743b3998d5d3d8064511b" iid="612e3600a9164ea4b1c18e433e474dcf" creation-date="11/08/2022 05:51:31" order-index="22" type="entity">
  581. <layout ax="442.0939" ay="1200.236" awidth="190" aheight="100" x="432" y="1193" width="190" height="100" rotation-center="-40,0" />
  582. </item>
  583. <item id="a4f54b2c54e84fef976364f3dbfb4210" iid="82847bd07d174a0780ba1fd7d61ed87f" creation-date="11/08/2022 07:56:51" order-index="26" type="entity">
  584. <layout ax="769.3649" ay="1058.43" awidth="200" aheight="50" x="757" y="1041" width="200" height="60" rotation-center="-30,0" />
  585. </item>
  586. <item id="5d9c2bc68ff249cdb75891c025eb8e8a" iid="8cc1b40414694627a8756c37e2f8dfc3" creation-date="11/08/2022 07:57:07" order-index="27" type="entity">
  587. <layout ax="474.2482" ay="1049.028" awidth="122" aheight="60" x="466" y="1041" width="122" height="60" />
  588. </item>
  589. <item id="f72aa32dc60248a7bb9dacc3e5e5e92d" iid="6ca04f8b9725455985260167b7fce088" creation-date="11/08/2022 07:57:36" order-index="28" type="relation">
  590. <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">
  591. <points>
  592. <point x="534" y="977" />
  593. <point x="535" y="1049" />
  594. </points>
  595. </layout>
  596. <relation from="e7a3da1f257b47209ff4d4d6233cb814" from-iid="57d5a47d69ea41d0bd77fac0f40c8310" to="5d9c2bc68ff249cdb75891c025eb8e8a" to-iid="8cc1b40414694627a8756c37e2f8dfc3" />
  597. </item>
  598. <item id="4d44a5d6c1134d97a781f2f807eb64dc" iid="c68a6d73f184485ab8541072f28522fe" creation-date="11/08/2022 07:59:42" order-index="29" type="relation">
  599. <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">
  600. <points>
  601. <point x="596" y="1079" />
  602. <point x="782" y="1083" />
  603. </points>
  604. </layout>
  605. <relation from="5d9c2bc68ff249cdb75891c025eb8e8a" from-iid="8cc1b40414694627a8756c37e2f8dfc3" to="a4f54b2c54e84fef976364f3dbfb4210" to-iid="82847bd07d174a0780ba1fd7d61ed87f" />
  606. </item>
  607. <item id="af4dfd8ccddb47bfba620c65a1d4e1b2" iid="5611f42474db43a2b68ecba4cd4e91e7" creation-date="11/08/2022 08:01:01" order-index="30" type="entity">
  608. <layout ax="159.6605" ay="1197.5" awidth="205" aheight="100" x="151" y="1193" width="205" height="100" rotation-center="-47.5,0" />
  609. </item>
  610. <item id="ebc5fe070a764339b4d0069e473b2d63" iid="4b52c894dd954407bc4990a82f0f13fe" creation-date="11/08/2022 08:01:36" order-index="31" type="relation">
  611. <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">
  612. <points>
  613. <point x="441" y="1250" />
  614. <point x="365" y="1248" />
  615. </points>
  616. </layout>
  617. <relation from="8b245a2974f743b3998d5d3d8064511b" from-iid="612e3600a9164ea4b1c18e433e474dcf" to="af4dfd8ccddb47bfba620c65a1d4e1b2" to-iid="5611f42474db43a2b68ecba4cd4e91e7" />
  618. </item>
  619. <item id="f6977b36be114cc0bdb54f411e6a7c42" iid="d90e6e52a3864bc08c73351cc66d7556" creation-date="11/08/2022 08:01:55" order-index="32" type="relation">
  620. <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">
  621. <points>
  622. <point x="262" y="1197" />
  623. <point x="474" y="1079" />
  624. </points>
  625. </layout>
  626. <relation from="af4dfd8ccddb47bfba620c65a1d4e1b2" from-iid="5611f42474db43a2b68ecba4cd4e91e7" to="5d9c2bc68ff249cdb75891c025eb8e8a" to-iid="8cc1b40414694627a8756c37e2f8dfc3" />
  627. </item>
  628. <item id="aa60143bc9c0413aad4c55bcca89b2ea" iid="d6a27f63a3834c39b0404f9d5a956115" creation-date="11/08/2022 08:02:02" order-index="33" type="relation">
  629. <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">
  630. <points>
  631. <point x="535" y="1109" />
  632. <point x="537" y="1200" />
  633. </points>
  634. </layout>
  635. <relation from="5d9c2bc68ff249cdb75891c025eb8e8a" from-iid="8cc1b40414694627a8756c37e2f8dfc3" to="8b245a2974f743b3998d5d3d8064511b" to-iid="612e3600a9164ea4b1c18e433e474dcf" />
  636. </item>
  637. <item id="8cd90bac9b51400eabe3ccf9158124b2" iid="371cdc57662a416c9f17b62e1b512d73" creation-date="11/08/2022 08:02:31" order-index="34" type="entity">
  638. <layout ax="146.8221" ay="1391.164" awidth="233" aheight="60" x="137" y="1388" width="233" height="60" rotation-center="41.5,0" />
  639. </item>
  640. <item id="c3dd066406424ec58846202c15b5802e" iid="8f6a01d921f74c579552403c0bc30dcf" creation-date="11/08/2022 08:03:23" order-index="35" type="entity">
  641. <layout ax="410.6182" ay="1377.463" awidth="257" aheight="76" x="398.5" y="1372" width="257" height="76" rotation-center="19,0" />
  642. </item>
  643. <item id="78449336c87849d6bede5b22a70ea230" iid="bedcf5179dbe47ca84f4e0410307c2a1" creation-date="11/08/2022 08:04:02" order-index="36" type="relation">
  644. <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">
  645. <points>
  646. <point x="537" y="1300" />
  647. <point x="539" y="1377" />
  648. </points>
  649. </layout>
  650. <relation from="8b245a2974f743b3998d5d3d8064511b" from-iid="612e3600a9164ea4b1c18e433e474dcf" to="c3dd066406424ec58846202c15b5802e" to-iid="8f6a01d921f74c579552403c0bc30dcf" />
  651. </item>
  652. <item id="9f89c39da61a4230991dcdeec3da8574" iid="c12804cc57424f77a281415273d9ebeb" creation-date="11/08/2022 08:04:34" order-index="37" type="relation">
  653. <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">
  654. <points>
  655. <point x="263" y="1297" />
  656. <point x="264" y="1391" />
  657. </points>
  658. </layout>
  659. <relation from="af4dfd8ccddb47bfba620c65a1d4e1b2" from-iid="5611f42474db43a2b68ecba4cd4e91e7" to="8cd90bac9b51400eabe3ccf9158124b2" to-iid="371cdc57662a416c9f17b62e1b512d73" />
  660. </item>
  661. <item id="b7e7b4b9036f42768b84373fda61eee7" iid="80e05d24ec1a4f729acbd27890d42571" creation-date="11/08/2022 08:04:58" order-index="38" type="entity">
  662. <layout ax="181.2725" ay="1521.661" awidth="166" aheight="76" x="170.5" y="1519.5" width="166" height="76" />
  663. </item>
  664. <item id="59c4c4fbe9ce476a986bdcbeb779cc75" iid="9d40d17d1372408a8792360f6ea592d2" creation-date="11/08/2022 08:05:46" order-index="39" type="entity">
  665. <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" />
  666. </item>
  667. <item id="abac9c9e94da489ba43d2e97bd93ea4d" iid="fc9ffaa1fd224426bb4aafaae5ad2359" creation-date="11/08/2022 08:06:18" order-index="40" type="relation">
  668. <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">
  669. <points>
  670. <point x="264" y="1451" />
  671. <point x="265" y="1522" />
  672. </points>
  673. </layout>
  674. <relation from="8cd90bac9b51400eabe3ccf9158124b2" from-iid="371cdc57662a416c9f17b62e1b512d73" to="b7e7b4b9036f42768b84373fda61eee7" to-iid="80e05d24ec1a4f729acbd27890d42571" />
  675. </item>
  676. <item id="e1d037ea46c843a482d991d95f8d76f8" iid="d0eeec52470e4e5186d0b1a42f2b0f34" creation-date="11/08/2022 08:06:24" order-index="41" type="relation">
  677. <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">
  678. <points>
  679. <point x="539" y="1453" />
  680. <point x="541" y="1527" />
  681. </points>
  682. </layout>
  683. <relation from="c3dd066406424ec58846202c15b5802e" from-iid="8f6a01d921f74c579552403c0bc30dcf" to="59c4c4fbe9ce476a986bdcbeb779cc75" to-iid="9d40d17d1372408a8792360f6ea592d2" />
  684. </item>
  685. <item id="2210bf4bcecb466c9048a1ebcee9986e" iid="578f57dd4255490584de048bfd9870a8" creation-date="11/08/2022 08:07:55" order-index="42" type="entity">
  686. <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" />
  687. </item>
  688. <item id="dbe83edfd94347faa3189afa0f12d5f9" iid="b5e24ffa06a14eb893e20c745bbe2e8a" creation-date="11/08/2022 08:08:17" order-index="43" type="relation">
  689. <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">
  690. <points>
  691. <point x="541" y="1596" />
  692. <point x="544" y="1691" />
  693. </points>
  694. </layout>
  695. <relation from="59c4c4fbe9ce476a986bdcbeb779cc75" from-iid="9d40d17d1372408a8792360f6ea592d2" to="2210bf4bcecb466c9048a1ebcee9986e" to-iid="578f57dd4255490584de048bfd9870a8" />
  696. </item>
  697. <item id="c9aeaf88d97b49c389d2eab5e6f941a7" iid="e4d3f945344645afa0e1eaeef3169680" creation-date="11/08/2022 08:08:23" order-index="44" type="relation">
  698. <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">
  699. <points>
  700. <point x="265" y="1598" />
  701. <point x="544" y="1691" />
  702. </points>
  703. </layout>
  704. <relation from="b7e7b4b9036f42768b84373fda61eee7" from-iid="80e05d24ec1a4f729acbd27890d42571" to="2210bf4bcecb466c9048a1ebcee9986e" to-iid="578f57dd4255490584de048bfd9870a8" />
  705. </item>
  706. <item id="3b16a5ecb5e843ad8821df5d5b356def" iid="9f7fc4e974ae443797a4d9f96e6bd2fa" creation-date="11/08/2022 08:08:47" order-index="45" type="entity">
  707. <layout ax="467.4355" ay="1808.097" awidth="150" aheight="60" x="452" y="1810" width="150" height="60" />
  708. </item>
  709. <item id="dd466577b156451eb42656922ef465d2" iid="3d47b8c7d86c459eaf0b8bf31595b7ca" creation-date="11/08/2022 08:09:02" order-index="46" type="relation">
  710. <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">
  711. <points>
  712. <point x="544" y="1741" />
  713. <point x="542" y="1808" />
  714. </points>
  715. </layout>
  716. <relation from="2210bf4bcecb466c9048a1ebcee9986e" from-iid="578f57dd4255490584de048bfd9870a8" to="3b16a5ecb5e843ad8821df5d5b356def" to-iid="9f7fc4e974ae443797a4d9f96e6bd2fa" />
  717. </item>
  718. <item id="c83cb2481a1a456a921c0096e6e7f05f" iid="3e045150894c404c866aace0a1c630c8" creation-date="11/08/2022 08:10:24" order-index="47" type="relation">
  719. <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">
  720. <points>
  721. <point x="162" y="1421" />
  722. <point x="2" y="1030" />
  723. <point x="193" y="330" />
  724. </points>
  725. </layout>
  726. <relation from="8cd90bac9b51400eabe3ccf9158124b2" from-iid="371cdc57662a416c9f17b62e1b512d73" to="0a8d75b0225f48ce8873c83fedb3a566" to-iid="b93f0ce5ff5e4bc48ac7135629f09399" />
  727. </item>
  728. <item id="7da93049cc724cac917b22048bb10488" iid="b927d644787e40bda99e67a49f412939" creation-date="11/08/2022 08:10:34" order-index="48" type="relation">
  729. <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">
  730. <points>
  731. <point x="449" y="1377" />
  732. <point x="121" y="1287.5" />
  733. <point x="193" y="330" />
  734. </points>
  735. </layout>
  736. <relation from="c3dd066406424ec58846202c15b5802e" from-iid="8f6a01d921f74c579552403c0bc30dcf" to="0a8d75b0225f48ce8873c83fedb3a566" to-iid="b93f0ce5ff5e4bc48ac7135629f09399" />
  737. </item>
  738. <item id="289390e80cab44c4b29c98b705d51167" iid="2f96e0027e7c4590be292c51cb84fba9" creation-date="11/08/2022 08:18:09" order-index="49" type="entity">
  739. <layout ax="453.3218" ay="434" awidth="150.0939" aheight="111" x="453.3218" y="434" width="150.0939" height="111" />
  740. </item>
  741. <item id="7e8f23f6d3a0443aa03347ed6488c26b" iid="90c28fc79ee14c4681b39e4d47d5c8bb" creation-date="11/08/2022 08:18:38" order-index="50" type="relation">
  742. <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">
  743. <points>
  744. <point x="528" y="544" />
  745. <point x="532" y="694" />
  746. </points>
  747. </layout>
  748. <relation from="289390e80cab44c4b29c98b705d51167" from-iid="2f96e0027e7c4590be292c51cb84fba9" to="c8214de2d5ee41d4be8f2b58e6a2d9d8" to-iid="737a5330317e4263921e89f793006b89" />
  749. </item>
  750. <item id="68b42662151342d89f24fcf1628e49a6" iid="78ceeae81d854c5e8b4cfc1197d16aa4" creation-date="11/08/2022 08:19:09" order-index="51" type="entity">
  751. <layout ax="-182" ay="451.5" awidth="276" aheight="76" x="-182" y="451.5" width="276" height="76" rotation-center="0,15.5" />
  752. </item>
  753. <item id="64b625b7f65d4fdea8b55ae8f7d2da70" iid="6613726b41cf4b1494b922b060df5d7e" creation-date="11/08/2022 08:21:50" order-index="52" type="relation">
  754. <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">
  755. <points>
  756. <point x="456" y="492" />
  757. <point x="75" y="490" />
  758. </points>
  759. </layout>
  760. <relation from="289390e80cab44c4b29c98b705d51167" from-iid="2f96e0027e7c4590be292c51cb84fba9" to="68b42662151342d89f24fcf1628e49a6" to-iid="78ceeae81d854c5e8b4cfc1197d16aa4" />
  761. </item>
  762. <item id="e75baa3e64f747a591f1d4d6319a7c48" iid="3799260a5ba24b27ab5ab2d5a678ec94" creation-date="11/08/2022 08:22:16" order-index="53" type="relation">
  763. <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">
  764. <points>
  765. <point x="-44" y="528" />
  766. <point x="-199" y="1427" />
  767. <point x="264" y="1522" />
  768. </points>
  769. </layout>
  770. <relation from="68b42662151342d89f24fcf1628e49a6" from-iid="78ceeae81d854c5e8b4cfc1197d16aa4" to="b7e7b4b9036f42768b84373fda61eee7" to-iid="80e05d24ec1a4f729acbd27890d42571" />
  771. </item>
  772. <item id="db2c81d9b11d467494645052fa30e42c" iid="8ee5b7b549754e4aaf38543f10c304ef" creation-date="11/08/2022 08:26:45" order-index="54" type="entity">
  773. <layout ax="-382" ay="226.7657" awidth="140" aheight="127" x="-382" y="226.7657" width="140" height="100" />
  774. </item>
  775. </layer>
  776. </diagram>
  777. </model>
  778. </sub-models>
  779. </model>
  780. </sub-models>
  781. <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">
  782. <style>
  783. <background-color index="1" color="#FFFFFFFF" />
  784. <background-color index="2" color="#FFFFFFFF" />
  785. <background-type type="solid" />
  786. </style>
  787. <meta>
  788. <authors>
  789. <author />
  790. </authors>
  791. <description>Shows module associations and descripe their functionality (role)</description>
  792. <creation-date>09/15/2022 15:38:28</creation-date>
  793. <change-date>11/09/2022 16:26:55</change-date>
  794. <revision-count>0</revision-count>
  795. <version>0.0.2</version>
  796. </meta>
  797. <abstract-items>
  798. <item id="cc2cc1a81f0b46d9990261d829151310" cid="REL015" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:06:13" from="874b9f152e0b445dbcfeee89df6a5ea4" to="2626a7fd504946ccaa1eb090b6d27d0d" visibility="package">
  799. <stereotypes>
  800. <stereotype name="use" />
  801. </stereotypes>
  802. <stereotype-instances>
  803. <stereotype id="cc2cc1a81f0b46d9990261d829151310_use_c" type="use" ref="" />
  804. </stereotype-instances>
  805. <owned-items />
  806. <relation from="874b9f152e0b445dbcfeee89df6a5ea4" to="2626a7fd504946ccaa1eb090b6d27d0d" derived="false">
  807. <start-role id="umlar-b8afc572-a47d-4182-ac52-8b91593b4514" name="" navigability="" association-type="association" visibility="private" property-ref="7e127fd6ffb44997a6ed00e09680e29c" />
  808. <end-role id="umlar-c52d6c5d-9db7-434e-8ecc-584379b01af2" name="" navigability="yes" association-type="association" visibility="private" property-ref="3ea00702610044d585111749ee746ce0" />
  809. </relation>
  810. </item>
  811. <item id="874b9f152e0b445dbcfeee89df6a5ea4" cid="CPT004" type="component" name="Processor" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:03:49" visibility="undefined">
  812. <stereotypes>
  813. <stereotype name="component" />
  814. <stereotype name="module" />
  815. </stereotypes>
  816. <documentations>
  817. <doc id="0b4bc4e4d11b4c6fb34ec38ce139c424">
  818. <text>
  819. <default>
  820. <style font-name="Verdana" font-size="12">
  821. <text>
  822. <solid-brush color="#FFE6E6E6" />
  823. </text>
  824. </style>
  825. </default>
  826. <styles />
  827. <content>
  828. <paragraph>
  829. <style numbering-type="None">
  830. <numbering name="" multi-level="false">
  831. <numbering-level type="None" level="0" format="{0}." />
  832. </numbering>
  833. </style>
  834. <p>
  835. <t>Module </t>
  836. </p>
  837. <p>
  838. <t>provide </t>
  839. </p>
  840. <p>
  841. <t>worker </t>
  842. </p>
  843. <p>
  844. <t>queue </t>
  845. </p>
  846. <p>
  847. <t>to </t>
  848. </p>
  849. <p>
  850. <t>process </t>
  851. </p>
  852. <p>
  853. <t>oneway </t>
  854. </p>
  855. <p>
  856. <t>or </t>
  857. </p>
  858. <p>
  859. <t>repeatable </t>
  860. </p>
  861. <p>
  862. <t>tasks
  863. </t>
  864. </p>
  865. </paragraph>
  866. </content>
  867. </text>
  868. </doc>
  869. </documentations>
  870. <stereotype-instances>
  871. <stereotype id="874b9f152e0b445dbcfeee89df6a5ea4_component_c" type="component" ref="" />
  872. <stereotype id="874b9f152e0b445dbcfeee89df6a5ea4_module_c" type="module" ref="" />
  873. </stereotype-instances>
  874. <component />
  875. </item>
  876. <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">
  877. <stereotypes>
  878. <stereotype name="use" />
  879. </stereotypes>
  880. <stereotype-instances>
  881. <stereotype id="802906c103994cfb8c5117077f30e22a_use_c" type="use" ref="" />
  882. </stereotype-instances>
  883. <owned-items />
  884. <relation from="7546dafc2b0d406bb9cf489c5eeb4aff" to="2626a7fd504946ccaa1eb090b6d27d0d" derived="false">
  885. <start-role id="umlar-e2eb9e22-bb15-43b9-a2f3-d02e323b98e5" name="" navigability="" association-type="association" visibility="private" property-ref="de0957d8d7ac42eab57e579c2cefbf47" />
  886. <end-role id="umlar-eb41fac4-842a-4844-85f1-ece588b7673f" name="" navigability="yes" association-type="association" visibility="private" property-ref="49ad3ceea0bb4157b557e21e2eb7c0b9" />
  887. </relation>
  888. </item>
  889. <item id="26f7ba623f254dd28b60add6ba05099c" cid="REL018" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/09/2022 16:26:55" from="84ab40101b0b4e5caa621287dc10fd91" to="874b9f152e0b445dbcfeee89df6a5ea4" visibility="package">
  890. <stereotypes>
  891. <stereotype name="use" />
  892. </stereotypes>
  893. <stereotype-instances>
  894. <stereotype id="26f7ba623f254dd28b60add6ba05099c_use_c" type="use" ref="" />
  895. </stereotype-instances>
  896. <owned-items />
  897. <relation from="84ab40101b0b4e5caa621287dc10fd91" to="874b9f152e0b445dbcfeee89df6a5ea4" derived="false">
  898. <start-role id="umlar-6f8a4b6d-1d34-4af1-bcff-4b8d92164a67" name="" navigability="" association-type="association" visibility="private" property-ref="4c0b5740d5454593b2f30e99077948f6" />
  899. <end-role id="umlar-97418e7e-69a3-4485-b954-7c4c2893b95d" name="" navigability="yes" association-type="association" visibility="private" property-ref="6d22af3498a54020b1085246698cc0a1" />
  900. </relation>
  901. </item>
  902. <item id="84ab40101b0b4e5caa621287dc10fd91" cid="CPT005" type="component" name="Notification" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:09:07" visibility="undefined">
  903. <stereotypes>
  904. <stereotype name="component" />
  905. <stereotype name="module" />
  906. </stereotypes>
  907. <stereotype-instances>
  908. <stereotype id="84ab40101b0b4e5caa621287dc10fd91_component_c" type="component" ref="" />
  909. <stereotype id="84ab40101b0b4e5caa621287dc10fd91_module_c" type="module" ref="" />
  910. </stereotype-instances>
  911. <component />
  912. </item>
  913. <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">
  914. <stereotypes>
  915. <stereotype name="component" />
  916. <stereotype name="module" />
  917. </stereotypes>
  918. <documentations>
  919. <doc id="2777eb2fa3ca41168e11650499b7bce5">
  920. <text>
  921. <default>
  922. <style font-name="Verdana" font-size="12">
  923. <text>
  924. <solid-brush color="#FFE6E6E6" />
  925. </text>
  926. </style>
  927. </default>
  928. <styles />
  929. <content>
  930. <paragraph>
  931. <style numbering-type="None">
  932. <numbering name="" multi-level="false">
  933. <numbering-level type="None" level="0" format="{0}." />
  934. </numbering>
  935. </style>
  936. <p>
  937. <t>Provide </t>
  938. </p>
  939. <p>
  940. <t>general </t>
  941. </p>
  942. <p>
  943. <t>functionalities </t>
  944. </p>
  945. <p>
  946. <t>shared </t>
  947. </p>
  948. <p>
  949. <t>across </t>
  950. </p>
  951. <p>
  952. <t>whole </t>
  953. </p>
  954. <p>
  955. <t>application.
  956. </t>
  957. </p>
  958. </paragraph>
  959. </content>
  960. </text>
  961. </doc>
  962. </documentations>
  963. <stereotype-instances>
  964. <stereotype id="2626a7fd504946ccaa1eb090b6d27d0d_component_c" type="component" ref="" />
  965. <stereotype id="2626a7fd504946ccaa1eb090b6d27d0d_module_c" type="module" ref="" />
  966. </stereotype-instances>
  967. <component />
  968. </item>
  969. <item id="aca6de65170946639e84b6ea7b12bf9e" cid="DEP001" type="dependency" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:06:50" from="874b9f152e0b445dbcfeee89df6a5ea4" to="7546dafc2b0d406bb9cf489c5eeb4aff" visibility="package">
  970. <stereotypes>
  971. <stereotype name="use" />
  972. <stereotype name="Optional" />
  973. </stereotypes>
  974. <stereotype-instances>
  975. <stereotype id="aca6de65170946639e84b6ea7b12bf9e_use_c" type="use" ref="" />
  976. <stereotype id="aca6de65170946639e84b6ea7b12bf9e_optional_c" type="Optional" />
  977. </stereotype-instances>
  978. </item>
  979. <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">
  980. <stereotypes>
  981. <stereotype name="component" />
  982. <stereotype name="module" />
  983. </stereotypes>
  984. <documentations>
  985. <doc id="592a16c499e3482ea6729697c2c8d3af">
  986. <text>
  987. <default>
  988. <style font-name="Verdana" font-size="12">
  989. <text>
  990. <solid-brush color="#FFE6E6E6" />
  991. </text>
  992. </style>
  993. </default>
  994. <styles />
  995. <content>
  996. <paragraph>
  997. <style numbering-type="None">
  998. <numbering name="" multi-level="false">
  999. <numbering-level type="None" level="0" format="{0}." />
  1000. </numbering>
  1001. </style>
  1002. <p>
  1003. <t>Provides </t>
  1004. </p>
  1005. <p>
  1006. <t>invoicing </t>
  1007. </p>
  1008. <p>
  1009. <t>and </t>
  1010. </p>
  1011. <p>
  1012. <t>payments </t>
  1013. </p>
  1014. <p>
  1015. <t>functionality
  1016. </t>
  1017. </p>
  1018. </paragraph>
  1019. </content>
  1020. </text>
  1021. </doc>
  1022. </documentations>
  1023. <stereotype-instances>
  1024. <stereotype id="cb92b4b50dc847aebfdbd90ce365a1eb_component_c" type="component" ref="" />
  1025. <stereotype id="cb92b4b50dc847aebfdbd90ce365a1eb_module_c" type="module" ref="" />
  1026. </stereotype-instances>
  1027. <component />
  1028. </item>
  1029. <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">
  1030. <stereotypes>
  1031. <stereotype name="use" />
  1032. </stereotypes>
  1033. <stereotype-instances>
  1034. <stereotype id="7268ad1b0bd249218475144e6941ccdf_use_c" type="use" ref="" />
  1035. </stereotype-instances>
  1036. <owned-items />
  1037. <relation from="cb92b4b50dc847aebfdbd90ce365a1eb" to="7546dafc2b0d406bb9cf489c5eeb4aff" derived="false">
  1038. <start-role id="umlar-86c34510-4acf-4b8b-bf1d-9b0aceaea4d8" name="" navigability="" association-type="association" visibility="private" property-ref="93016f98fae440bb88e27fe09172df66" />
  1039. <end-role id="umlar-9903715c-8bc3-4609-a03c-74d00b52fdd7" name="" navigability="yes" association-type="association" visibility="private" property-ref="132ce45236e54d6da05ae53d64712729" />
  1040. </relation>
  1041. </item>
  1042. <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">
  1043. <stereotypes>
  1044. <stereotype name="component" />
  1045. <stereotype name="module" />
  1046. </stereotypes>
  1047. <documentations>
  1048. <doc id="2f25c883ee2a4f96868943171354c7f7">
  1049. <text>
  1050. <default>
  1051. <style font-name="Verdana" font-size="12">
  1052. <text>
  1053. <solid-brush color="#FFE6E6E6" />
  1054. </text>
  1055. </style>
  1056. </default>
  1057. <styles />
  1058. <content>
  1059. <paragraph>
  1060. <style numbering-type="None">
  1061. <numbering name="" multi-level="false">
  1062. <numbering-level type="None" level="0" format="{0}." />
  1063. </numbering>
  1064. </style>
  1065. <p>
  1066. <t>Provides </t>
  1067. </p>
  1068. <p>
  1069. <t>customer </t>
  1070. </p>
  1071. <p>
  1072. <t>oriented </t>
  1073. </p>
  1074. <p>
  1075. <t>functionality, </t>
  1076. </p>
  1077. <p>
  1078. <t>address/contact</t>
  1079. </p>
  1080. <p>
  1081. <t> </t>
  1082. </p>
  1083. <p>
  1084. <t>management</t>
  1085. </p>
  1086. <p>
  1087. <t>
  1088. </t>
  1089. </p>
  1090. </paragraph>
  1091. </content>
  1092. </text>
  1093. </doc>
  1094. </documentations>
  1095. <stereotype-instances>
  1096. <stereotype id="7546dafc2b0d406bb9cf489c5eeb4aff_component_c" type="component" ref="" />
  1097. <stereotype id="7546dafc2b0d406bb9cf489c5eeb4aff_module_c" type="module" ref="" />
  1098. </stereotype-instances>
  1099. <component />
  1100. </item>
  1101. <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">
  1102. <stereotypes>
  1103. <stereotype name="use" />
  1104. </stereotypes>
  1105. <stereotype-instances>
  1106. <stereotype id="2037f7bd032e4fa3a1d8d99f1cd1ea27_use_c" type="use" ref="" />
  1107. </stereotype-instances>
  1108. <owned-items />
  1109. <relation from="cb92b4b50dc847aebfdbd90ce365a1eb" to="2626a7fd504946ccaa1eb090b6d27d0d" derived="false">
  1110. <start-role id="umlar-4a8b65c6-e903-479f-ba6b-fecefb2c0d91" name="" navigability="" association-type="association" visibility="private" property-ref="002883f71fbc4324bbd1efa19cdbd1a6" />
  1111. <end-role id="umlar-045508d3-92f9-46f6-b571-e06ad94bd34c" name="" navigability="yes" association-type="association" visibility="private" property-ref="b531bae1520645b58761d8077cac7517" />
  1112. </relation>
  1113. </item>
  1114. </abstract-items>
  1115. <layer id="4652a1f25651443e81c94ca76e3351d7" name="Default" visible="true" enabled="true" locked="false">
  1116. <item id="2626a7fd504946ccaa1eb090b6d27d0d" iid="2d9f12d0b5c747d680e5b9a634abc525" show-fields="false" creation-date="09/15/2022 15:39:10" order-index="0" type="entity">
  1117. <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" />
  1118. </item>
  1119. <item id="7546dafc2b0d406bb9cf489c5eeb4aff" iid="c0a6c5ce0e1b45008fd2ef6d6c8d1a8c" show-fields="false" creation-date="09/15/2022 15:40:04" order-index="1" type="entity">
  1120. <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" />
  1121. </item>
  1122. <item id="cb92b4b50dc847aebfdbd90ce365a1eb" iid="42fbe04b406d43938c426dd5a934f4e6" show-fields="false" creation-date="09/15/2022 15:40:58" order-index="2" type="entity">
  1123. <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" />
  1124. </item>
  1125. <item id="7268ad1b0bd249218475144e6941ccdf" iid="508755fa1a0e4a7fb2dfba7f62070f8f" creation-date="09/15/2022 15:42:51" order-index="3" type="relation">
  1126. <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">
  1127. <points>
  1128. <point x="1096" y="564" />
  1129. <point x="761" y="567" />
  1130. </points>
  1131. </layout>
  1132. <relation from="cb92b4b50dc847aebfdbd90ce365a1eb" from-iid="42fbe04b406d43938c426dd5a934f4e6" to="7546dafc2b0d406bb9cf489c5eeb4aff" to-iid="c0a6c5ce0e1b45008fd2ef6d6c8d1a8c" />
  1133. </item>
  1134. <item id="2037f7bd032e4fa3a1d8d99f1cd1ea27" iid="b64cdba8f076447da454c86782e6da61" creation-date="09/15/2022 15:43:08" order-index="4" type="relation">
  1135. <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">
  1136. <points>
  1137. <point x="1171" y="482" />
  1138. <point x="909" y="423" />
  1139. </points>
  1140. </layout>
  1141. <relation from="cb92b4b50dc847aebfdbd90ce365a1eb" from-iid="42fbe04b406d43938c426dd5a934f4e6" to="2626a7fd504946ccaa1eb090b6d27d0d" to-iid="2d9f12d0b5c747d680e5b9a634abc525" />
  1142. </item>
  1143. <item id="802906c103994cfb8c5117077f30e22a" iid="bed3456ed286491285c49010378498ab" creation-date="09/15/2022 15:43:31" order-index="5" type="relation">
  1144. <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">
  1145. <points>
  1146. <point x="691" y="487" />
  1147. <point x="909" y="423" />
  1148. </points>
  1149. </layout>
  1150. <relation from="7546dafc2b0d406bb9cf489c5eeb4aff" from-iid="c0a6c5ce0e1b45008fd2ef6d6c8d1a8c" to="2626a7fd504946ccaa1eb090b6d27d0d" to-iid="2d9f12d0b5c747d680e5b9a634abc525" />
  1151. </item>
  1152. <item id="dia55312d629c641938b485196c9371fe44919" iid="15406135242e4cdda2683de4a2211c46" name="" creation-date="09/15/2022 15:44:58" order-index="6" type="diagram-description">
  1153. <layout ax="21" ay="97" awidth="350" aheight="209" x="21" y="97" width="350" height="209" rotation-center="0,-14.5" />
  1154. </item>
  1155. <item id="874b9f152e0b445dbcfeee89df6a5ea4" iid="2bb5aadc002443269d030457205ef0eb" show-fields="false" creation-date="11/08/2022 05:03:49" order-index="7" type="entity">
  1156. <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" />
  1157. </item>
  1158. <item id="cc2cc1a81f0b46d9990261d829151310" iid="4604c219866d4988a5babb18a2d958b0" creation-date="11/08/2022 05:06:13" order-index="8" type="relation">
  1159. <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">
  1160. <points>
  1161. <point x="797" y="744" />
  1162. <point x="909" y="423" />
  1163. </points>
  1164. </layout>
  1165. <relation from="874b9f152e0b445dbcfeee89df6a5ea4" from-iid="2bb5aadc002443269d030457205ef0eb" to="2626a7fd504946ccaa1eb090b6d27d0d" to-iid="2d9f12d0b5c747d680e5b9a634abc525" />
  1166. </item>
  1167. <item id="aca6de65170946639e84b6ea7b12bf9e" iid="aeae86c8983c40eb9b5e4287488c0ca6" creation-date="11/08/2022 05:06:50" order-index="9" type="relation">
  1168. <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">
  1169. <points>
  1170. <point x="793" y="744" />
  1171. <point x="691" y="647" />
  1172. </points>
  1173. </layout>
  1174. <relation from="874b9f152e0b445dbcfeee89df6a5ea4" from-iid="2bb5aadc002443269d030457205ef0eb" to="7546dafc2b0d406bb9cf489c5eeb4aff" to-iid="c0a6c5ce0e1b45008fd2ef6d6c8d1a8c" />
  1175. </item>
  1176. <item id="84ab40101b0b4e5caa621287dc10fd91" iid="88601d8528a44a76b70325b3936d4e54" show-fields="false" creation-date="11/08/2022 05:09:07" order-index="10" type="entity">
  1177. <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" />
  1178. </item>
  1179. <item id="26f7ba623f254dd28b60add6ba05099c" iid="3ec42572547541a3ae8a3c32a4a5fd07" creation-date="11/09/2022 16:26:55" order-index="11" type="relation">
  1180. <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">
  1181. <points>
  1182. <point x="1096" y="824" />
  1183. <point x="864" y="824" />
  1184. </points>
  1185. </layout>
  1186. <relation from="84ab40101b0b4e5caa621287dc10fd91" from-iid="88601d8528a44a76b70325b3936d4e54" from-field="84ab40101b0b4e5caa621287dc10fd91_module" to="874b9f152e0b445dbcfeee89df6a5ea4" to-iid="2bb5aadc002443269d030457205ef0eb" />
  1187. </item>
  1188. </layer>
  1189. </diagram>
  1190. <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">
  1191. <style>
  1192. <background-color index="1" color="#FFFFFFFF" />
  1193. <background-color index="2" color="#FFFFFFFF" />
  1194. <background-type type="solid" />
  1195. </style>
  1196. <meta>
  1197. <authors>
  1198. <author>Dalibor Votruba</author>
  1199. </authors>
  1200. <description>General requirements list</description>
  1201. <creation-date>09/15/2022 15:52:35</creation-date>
  1202. <change-date>09/15/2022 15:52:35</change-date>
  1203. <revision-count>0</revision-count>
  1204. <version>0.0.1</version>
  1205. </meta>
  1206. <abstract-items>
  1207. <item id="f57cd7c78a5e483ebb3edb6a59957a97" cid="REQ014" type="requirement" name="RQ_CSTR_DB_CROSS_SCHEMA_1" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:09:33">
  1208. <requirement id="2.1.2.">
  1209. <description>
  1210. <text>
  1211. <default>
  1212. <style font-name="Verdana" font-size="12">
  1213. <text>
  1214. <solid-brush color="#FFE6E6E6" />
  1215. </text>
  1216. </style>
  1217. </default>
  1218. <styles />
  1219. <definition>
  1220. <sections>
  1221. <section name="">
  1222. <default-page>
  1223. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1224. <margins left="20" right="20" top="20" bottom="20" />
  1225. </page>
  1226. </default-page>
  1227. </section>
  1228. </sections>
  1229. </definition>
  1230. <content>
  1231. <paragraph>
  1232. <style numbering-type="None">
  1233. <numbering name="" multi-level="false">
  1234. <numbering-level type="None" level="0" format="{0}." />
  1235. </numbering>
  1236. </style>
  1237. <p>
  1238. <t>Data </t>
  1239. </p>
  1240. <p>
  1241. <t>referenced </t>
  1242. </p>
  1243. <p>
  1244. <t>cross </t>
  1245. </p>
  1246. <p>
  1247. <t>schema </t>
  1248. </p>
  1249. <p>
  1250. <t>with </t>
  1251. </p>
  1252. <p>
  1253. <t>Id
  1254. </t>
  1255. </p>
  1256. </paragraph>
  1257. </content>
  1258. </text>
  1259. </description>
  1260. <priority>0</priority>
  1261. <index>1</index>
  1262. <row-height>0</row-height>
  1263. </requirement>
  1264. </item>
  1265. <item id="c19c4449f012422dbba1ddec55021b44" cid="REL004" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:57:00" from="d3486fe91b1f476e8a3393099f04e99e" to="ba48530a7b5245a7b6efcf3d8e61f067" visibility="package">
  1266. <relation from="d3486fe91b1f476e8a3393099f04e99e" to="ba48530a7b5245a7b6efcf3d8e61f067" derived="false">
  1267. <start-role id="umlar-bbbda7d9-216a-4bf1-8616-4a711042a97f" name="" navigability="" association-type="association" visibility="private" />
  1268. <end-role id="umlar-7bf7c9f6-1749-468c-a24e-1de3dcfcc0ff" name="" navigability="" association-type="composition" visibility="private" />
  1269. </relation>
  1270. </item>
  1271. <item id="c34f0bc111894b608624e52c0815c07a" cid="REQ007" type="requirement" name="RQ_TECH_SPEC_FE_4" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:02:23">
  1272. <requirement id="3.4.">
  1273. <description>
  1274. <text>
  1275. <default>
  1276. <style font-name="Verdana" font-size="12">
  1277. <text>
  1278. <solid-brush color="#FFE6E6E6" />
  1279. </text>
  1280. </style>
  1281. </default>
  1282. <styles />
  1283. <definition>
  1284. <sections>
  1285. <section name="">
  1286. <default-page>
  1287. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1288. <margins left="20" right="20" top="20" bottom="20" />
  1289. </page>
  1290. </default-page>
  1291. </section>
  1292. </sections>
  1293. </definition>
  1294. <content>
  1295. <paragraph>
  1296. <style numbering-type="None">
  1297. <numbering name="" multi-level="false">
  1298. <numbering-level type="None" level="0" format="{0}." />
  1299. </numbering>
  1300. </style>
  1301. <p>
  1302. <t>Frontend: </t>
  1303. </p>
  1304. <p>
  1305. <t>ASP.NET
  1306. </t>
  1307. </p>
  1308. </paragraph>
  1309. </content>
  1310. </text>
  1311. </description>
  1312. <priority>0</priority>
  1313. <index>3</index>
  1314. <row-height>0</row-height>
  1315. </requirement>
  1316. </item>
  1317. <item id="0a48454de005413c92e4a5cce0d2982c" cid="REQ010" type="requirement" name="RQ_CONSTRAINTS" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:07:00">
  1318. <requirement id="2.">
  1319. <description>
  1320. <text>
  1321. <default>
  1322. <style font-name="Verdana" font-size="12">
  1323. <text>
  1324. <solid-brush color="#FFE6E6E6" />
  1325. </text>
  1326. </style>
  1327. </default>
  1328. <styles />
  1329. <definition>
  1330. <sections>
  1331. <section name="">
  1332. <default-page>
  1333. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1334. <margins left="20" right="20" top="20" bottom="20" />
  1335. </page>
  1336. </default-page>
  1337. </section>
  1338. </sections>
  1339. </definition>
  1340. <content>
  1341. <paragraph>
  1342. <style numbering-type="None">
  1343. <numbering name="" multi-level="false">
  1344. <numbering-level type="None" level="0" format="{0}." />
  1345. </numbering>
  1346. </style>
  1347. <p>
  1348. <t>Constraints
  1349. </t>
  1350. </p>
  1351. </paragraph>
  1352. <paragraph>
  1353. <style numbering-type="None">
  1354. <numbering name="" multi-level="false">
  1355. <numbering-level type="None" level="0" format="{0}." />
  1356. </numbering>
  1357. </style>
  1358. <p>
  1359. <t>
  1360. </t>
  1361. </p>
  1362. </paragraph>
  1363. </content>
  1364. </text>
  1365. </description>
  1366. <priority>0</priority>
  1367. <index>1</index>
  1368. <row-height>0</row-height>
  1369. <requirement ref="c54c944000d84837bbb378cebd81a4e2" />
  1370. <requirement ref="f2c72e50f02843f08f5a7b84d1b0047f" />
  1371. </requirement>
  1372. </item>
  1373. <item id="ce75414afc48414db34ec56233570770" cid="REL005" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:58:04" from="05792695378d4e0fa3cdd3681474e8f6" to="ba48530a7b5245a7b6efcf3d8e61f067" visibility="package">
  1374. <relation from="05792695378d4e0fa3cdd3681474e8f6" to="ba48530a7b5245a7b6efcf3d8e61f067" derived="false">
  1375. <start-role id="umlar-079b95ec-83bf-4369-8b4b-94ede2d285f7" name="" navigability="" association-type="association" visibility="private" />
  1376. <end-role id="umlar-91166476-9a2b-4f6e-8e4d-f257d32d2881" name="" navigability="" association-type="composition" visibility="private" />
  1377. </relation>
  1378. </item>
  1379. <item id="57b3095ce64f4492bf2b9b93738232bf" cid="REL007" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:02:23" from="c34f0bc111894b608624e52c0815c07a" to="ba48530a7b5245a7b6efcf3d8e61f067" visibility="package">
  1380. <relation from="c34f0bc111894b608624e52c0815c07a" to="ba48530a7b5245a7b6efcf3d8e61f067" derived="false">
  1381. <start-role id="umlar-94d9c5a5-4aee-470f-a86e-2d2a8e055db8" name="" navigability="" association-type="association" visibility="private" />
  1382. <end-role id="umlar-854ee18c-6cbe-4bab-8173-71a4176a7198" name="" navigability="" association-type="composition" visibility="private" />
  1383. </relation>
  1384. </item>
  1385. <item id="05792695378d4e0fa3cdd3681474e8f6" cid="REQ005" type="requirement" name="RQ_TECH_SPEC_FRAMEWORK_2" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:58:04">
  1386. <requirement id="3.2.">
  1387. <description>
  1388. <text>
  1389. <default>
  1390. <style font-name="Verdana" font-size="12">
  1391. <text>
  1392. <solid-brush color="#FFE6E6E6" />
  1393. </text>
  1394. </style>
  1395. </default>
  1396. <styles />
  1397. <definition>
  1398. <sections>
  1399. <section name="">
  1400. <default-page>
  1401. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1402. <margins left="20" right="20" top="20" bottom="20" />
  1403. </page>
  1404. </default-page>
  1405. </section>
  1406. </sections>
  1407. </definition>
  1408. <content>
  1409. <paragraph>
  1410. <style numbering-type="None">
  1411. <numbering name="" multi-level="false">
  1412. <numbering-level type="None" level="0" format="{0}." />
  1413. </numbering>
  1414. </style>
  1415. <p>
  1416. <t>.NET </t>
  1417. </p>
  1418. <p>
  1419. <t>6, </t>
  1420. </p>
  1421. <p>
  1422. <t>EF
  1423. </t>
  1424. </p>
  1425. </paragraph>
  1426. </content>
  1427. </text>
  1428. </description>
  1429. <priority>0</priority>
  1430. <index>1</index>
  1431. <row-height>0</row-height>
  1432. </requirement>
  1433. </item>
  1434. <item id="c42a187a572a4c2c80d005bf4ea52f65" cid="REQ001" type="requirement" name="RQ_SUP_USER" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:53:11">
  1435. <requirement id="1.1.">
  1436. <description>
  1437. <text>
  1438. <default>
  1439. <style font-name="Verdana" font-size="12">
  1440. <text>
  1441. <solid-brush color="#FFE6E6E6" />
  1442. </text>
  1443. </style>
  1444. </default>
  1445. <styles />
  1446. <definition>
  1447. <sections>
  1448. <section name="">
  1449. <default-page>
  1450. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1451. <margins left="20" right="20" top="20" bottom="20" />
  1452. </page>
  1453. </default-page>
  1454. </section>
  1455. </sections>
  1456. </definition>
  1457. <content>
  1458. <paragraph>
  1459. <style numbering-type="None">
  1460. <numbering name="" multi-level="false">
  1461. <numbering-level type="None" level="0" format="{0}." />
  1462. </numbering>
  1463. </style>
  1464. <p>
  1465. <t>Supports</t>
  1466. </p>
  1467. <p>
  1468. <t> </t>
  1469. </p>
  1470. <p>
  1471. <t>users </t>
  1472. </p>
  1473. <p>
  1474. <t>and </t>
  1475. </p>
  1476. <p>
  1477. <t>roles </t>
  1478. </p>
  1479. <p>
  1480. <t>management
  1481. </t>
  1482. </p>
  1483. </paragraph>
  1484. </content>
  1485. </text>
  1486. </description>
  1487. <priority>0</priority>
  1488. <index>0</index>
  1489. <row-height>0</row-height>
  1490. </requirement>
  1491. </item>
  1492. <item id="7888a9de9bb14ac0a6fadd2418d0d7a6" cid="REQ013" type="requirement" name="RQ_CSTR_DB_SCHPERMOD_1" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:08:33">
  1493. <requirement id="2.1.1.">
  1494. <description>
  1495. <text>
  1496. <default>
  1497. <style font-name="Verdana" font-size="12">
  1498. <text>
  1499. <solid-brush color="#FFE6E6E6" />
  1500. </text>
  1501. </style>
  1502. </default>
  1503. <styles />
  1504. <definition>
  1505. <sections>
  1506. <section name="">
  1507. <default-page>
  1508. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1509. <margins left="20" right="20" top="20" bottom="20" />
  1510. </page>
  1511. </default-page>
  1512. </section>
  1513. </sections>
  1514. </definition>
  1515. <content>
  1516. <paragraph>
  1517. <style numbering-type="None">
  1518. <numbering name="" multi-level="false">
  1519. <numbering-level type="None" level="0" format="{0}." />
  1520. </numbering>
  1521. </style>
  1522. <p>
  1523. <t>Schema </t>
  1524. </p>
  1525. <p>
  1526. <t>per </t>
  1527. </p>
  1528. <p>
  1529. <t>module
  1530. </t>
  1531. </p>
  1532. </paragraph>
  1533. </content>
  1534. </text>
  1535. </description>
  1536. <priority>0</priority>
  1537. <index>0</index>
  1538. <row-height>0</row-height>
  1539. </requirement>
  1540. </item>
  1541. <item id="b92a1d894874430fb846cd4ffebbe4e1" cid="REL014" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:09:33" from="f57cd7c78a5e483ebb3edb6a59957a97" to="c54c944000d84837bbb378cebd81a4e2" visibility="package">
  1542. <relation from="f57cd7c78a5e483ebb3edb6a59957a97" to="c54c944000d84837bbb378cebd81a4e2" derived="false">
  1543. <start-role id="umlar-423e6c82-85d6-443b-8625-5f07aecf1202" name="" navigability="" association-type="association" visibility="private" />
  1544. <end-role id="umlar-c701658c-e514-4bc8-bcb1-1bb373203a4a" name="" navigability="" association-type="composition" visibility="private" />
  1545. </relation>
  1546. </item>
  1547. <item id="2ffa044974b44d11a13593ba0173375b" cid="REL010" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:05:39" from="b2345a523c6b4b969a3fc4b92c2a427e" to="f3f58833e12d41adbad092d5fa821ae6" visibility="package">
  1548. <relation from="b2345a523c6b4b969a3fc4b92c2a427e" to="f3f58833e12d41adbad092d5fa821ae6" derived="false">
  1549. <start-role id="umlar-0e7d2f8f-2a37-411a-bff0-74c62cdb957a" name="" navigability="" association-type="association" visibility="private" />
  1550. <end-role id="umlar-a18b7f87-7f86-41a7-9b9e-f29d6476e500" name="" navigability="" association-type="composition" visibility="private" />
  1551. </relation>
  1552. </item>
  1553. <item id="b8f1b1ee8380442a9b9806bcaabd60e1" cid="REL009" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:04:56" from="c776555b542842099176f5d00fbd63e4" to="f3f58833e12d41adbad092d5fa821ae6" visibility="package">
  1554. <relation from="c776555b542842099176f5d00fbd63e4" to="f3f58833e12d41adbad092d5fa821ae6" derived="false">
  1555. <start-role id="umlar-f4b7161f-40c0-4a80-8fbc-193f49d5c778" name="" navigability="" association-type="association" visibility="private" />
  1556. <end-role id="umlar-2aec7c25-21df-4844-8d5f-a9d216d9f92e" name="" navigability="" association-type="composition" visibility="private" />
  1557. </relation>
  1558. </item>
  1559. <item id="d31aa3cec9784517b6f38b38341c1799" cid="REL006" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:59:19" from="cc5e96719a7b4470b17001e1bc806b61" to="ba48530a7b5245a7b6efcf3d8e61f067" visibility="package">
  1560. <relation from="cc5e96719a7b4470b17001e1bc806b61" to="ba48530a7b5245a7b6efcf3d8e61f067" derived="false">
  1561. <start-role id="umlar-0001072f-4ad5-4a14-a766-b2957377bec3" name="" navigability="" association-type="association" visibility="private" />
  1562. <end-role id="umlar-79164b1d-c08e-4b5c-8f1e-55b726537f82" name="" navigability="" association-type="composition" visibility="private" />
  1563. </relation>
  1564. </item>
  1565. <item id="d3486fe91b1f476e8a3393099f04e99e" cid="REQ004" type="requirement" name="RQ_TECH_SPEC_PLATFORM_1" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:57:00">
  1566. <requirement id="3.1.">
  1567. <description>
  1568. <text>
  1569. <default>
  1570. <style font-name="Verdana" font-size="12">
  1571. <text>
  1572. <solid-brush color="#FFE6E6E6" />
  1573. </text>
  1574. </style>
  1575. </default>
  1576. <styles />
  1577. <definition>
  1578. <sections>
  1579. <section name="">
  1580. <default-page>
  1581. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1582. <margins left="20" right="20" top="20" bottom="20" />
  1583. </page>
  1584. </default-page>
  1585. </section>
  1586. </sections>
  1587. </definition>
  1588. <content>
  1589. <paragraph>
  1590. <style numbering-type="None">
  1591. <numbering name="" multi-level="false">
  1592. <numbering-level type="None" level="0" format="{0}." />
  1593. </numbering>
  1594. </style>
  1595. <p>
  1596. <t>OS: </t>
  1597. </p>
  1598. <p>
  1599. <t>Windows, </t>
  1600. </p>
  1601. <p>
  1602. <t>Linux
  1603. </t>
  1604. </p>
  1605. </paragraph>
  1606. </content>
  1607. </text>
  1608. </description>
  1609. <priority>0</priority>
  1610. <index>0</index>
  1611. <row-height>0</row-height>
  1612. </requirement>
  1613. </item>
  1614. <item id="cc5e96719a7b4470b17001e1bc806b61" cid="REQ006" type="requirement" name="RQ_TECH_SPEC_DB_3" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:59:19">
  1615. <requirement id="3.3.">
  1616. <description>
  1617. <text>
  1618. <default>
  1619. <style font-name="Verdana" font-size="12">
  1620. <text>
  1621. <solid-brush color="#FFE6E6E6" />
  1622. </text>
  1623. </style>
  1624. </default>
  1625. <styles />
  1626. <definition>
  1627. <sections>
  1628. <section name="">
  1629. <default-page>
  1630. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1631. <margins left="20" right="20" top="20" bottom="20" />
  1632. </page>
  1633. </default-page>
  1634. </section>
  1635. </sections>
  1636. </definition>
  1637. <content>
  1638. <paragraph>
  1639. <style numbering-type="None">
  1640. <numbering name="" multi-level="false">
  1641. <numbering-level type="None" level="0" format="{0}." />
  1642. </numbering>
  1643. </style>
  1644. <p>
  1645. <t>Supports: </t>
  1646. </p>
  1647. <p>
  1648. <t>MSSQL, </t>
  1649. </p>
  1650. <p>
  1651. <t>PostgreSQL
  1652. </t>
  1653. </p>
  1654. </paragraph>
  1655. </content>
  1656. </text>
  1657. </description>
  1658. <priority>0</priority>
  1659. <index>2</index>
  1660. <row-height>0</row-height>
  1661. </requirement>
  1662. </item>
  1663. <item id="6236eeabf4f94d1984205fd7fcb75b72" cid="REL008" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:04:52" from="c42a187a572a4c2c80d005bf4ea52f65" to="f3f58833e12d41adbad092d5fa821ae6" visibility="package">
  1664. <relation from="c42a187a572a4c2c80d005bf4ea52f65" to="f3f58833e12d41adbad092d5fa821ae6" derived="false">
  1665. <start-role id="umlar-696a6ae5-2c5b-4315-8509-6910309626c0" name="" navigability="" association-type="association" visibility="private" />
  1666. <end-role id="umlar-c75275b3-d397-4fdc-9c8d-6d64236f1cfe" name="" navigability="" association-type="composition" visibility="private" />
  1667. </relation>
  1668. </item>
  1669. <item id="b2345a523c6b4b969a3fc4b92c2a427e" cid="REQ009" type="requirement" name="RQ_SUP_SETTINGS" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:05:39">
  1670. <requirement id="1.3.">
  1671. <description>
  1672. <text>
  1673. <default>
  1674. <style font-name="Verdana" font-size="12">
  1675. <text>
  1676. <solid-brush color="#FFE6E6E6" />
  1677. </text>
  1678. </style>
  1679. </default>
  1680. <styles />
  1681. <definition>
  1682. <sections>
  1683. <section name="">
  1684. <default-page>
  1685. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1686. <margins left="20" right="20" top="20" bottom="20" />
  1687. </page>
  1688. </default-page>
  1689. </section>
  1690. </sections>
  1691. </definition>
  1692. <content>
  1693. <paragraph>
  1694. <style numbering-type="None">
  1695. <numbering name="" multi-level="false">
  1696. <numbering-level type="None" level="0" format="{0}." />
  1697. </numbering>
  1698. </style>
  1699. <p>
  1700. <t>Support </t>
  1701. </p>
  1702. <p>
  1703. <t>module </t>
  1704. </p>
  1705. <p>
  1706. <t>specific </t>
  1707. </p>
  1708. <p>
  1709. <t>settings
  1710. </t>
  1711. </p>
  1712. </paragraph>
  1713. </content>
  1714. </text>
  1715. </description>
  1716. <priority>0</priority>
  1717. <index>2</index>
  1718. <row-height>0</row-height>
  1719. </requirement>
  1720. </item>
  1721. <item id="ba48530a7b5245a7b6efcf3d8e61f067" cid="REQ003" type="requirement" name="RQ_TECH_SPEC" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:56:20">
  1722. <requirement id="3.">
  1723. <description>
  1724. <text>
  1725. <default>
  1726. <style font-name="Verdana" font-size="12">
  1727. <text>
  1728. <solid-brush color="#FFE6E6E6" />
  1729. </text>
  1730. </style>
  1731. </default>
  1732. <styles />
  1733. <definition>
  1734. <sections>
  1735. <section name="">
  1736. <default-page>
  1737. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1738. <margins left="20" right="20" top="20" bottom="20" />
  1739. </page>
  1740. </default-page>
  1741. </section>
  1742. </sections>
  1743. </definition>
  1744. <content>
  1745. <paragraph>
  1746. <style numbering-type="None">
  1747. <numbering name="" multi-level="false">
  1748. <numbering-level type="None" level="0" format="{0}." />
  1749. </numbering>
  1750. </style>
  1751. <p>
  1752. <t>Technical </t>
  1753. </p>
  1754. <p>
  1755. <t>requirements
  1756. </t>
  1757. </p>
  1758. </paragraph>
  1759. <paragraph>
  1760. <style numbering-type="None">
  1761. <numbering name="" multi-level="false">
  1762. <numbering-level type="None" level="0" format="{0}." />
  1763. </numbering>
  1764. </style>
  1765. <p>
  1766. <t>
  1767. </t>
  1768. </p>
  1769. </paragraph>
  1770. </content>
  1771. </text>
  1772. </description>
  1773. <priority>0</priority>
  1774. <index>2</index>
  1775. <row-height>0</row-height>
  1776. <requirement ref="d3486fe91b1f476e8a3393099f04e99e" />
  1777. <requirement ref="05792695378d4e0fa3cdd3681474e8f6" />
  1778. <requirement ref="cc5e96719a7b4470b17001e1bc806b61" />
  1779. <requirement ref="c34f0bc111894b608624e52c0815c07a" />
  1780. </requirement>
  1781. </item>
  1782. <item id="613bacfba1584c98951c8961e3c0cc5e" cid="REL011" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:07:27" from="c54c944000d84837bbb378cebd81a4e2" to="0a48454de005413c92e4a5cce0d2982c" visibility="package">
  1783. <relation from="c54c944000d84837bbb378cebd81a4e2" to="0a48454de005413c92e4a5cce0d2982c" derived="false">
  1784. <start-role id="umlar-d48e5394-9a61-4927-bb93-d93364a80038" name="" navigability="" association-type="association" visibility="private" />
  1785. <end-role id="umlar-f1962cfa-bf9e-4a70-8799-da33b014ad08" name="" navigability="" association-type="composition" visibility="private" />
  1786. </relation>
  1787. </item>
  1788. <item id="4db2cc42f34c4caa94683e00c470b9da" cid="REL013" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:08:33" from="7888a9de9bb14ac0a6fadd2418d0d7a6" to="c54c944000d84837bbb378cebd81a4e2" visibility="package">
  1789. <relation from="7888a9de9bb14ac0a6fadd2418d0d7a6" to="c54c944000d84837bbb378cebd81a4e2" derived="false">
  1790. <start-role id="umlar-e7ad6a7e-5762-4095-9898-fc51424a1630" name="" navigability="" association-type="association" visibility="private" />
  1791. <end-role id="umlar-32228af5-36f3-486d-915d-60154cd74cd6" name="" navigability="" association-type="composition" visibility="private" />
  1792. </relation>
  1793. </item>
  1794. <item id="f2c72e50f02843f08f5a7b84d1b0047f" cid="REQ012" type="requirement" name="RQ_CSTR_APP" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:07:51">
  1795. <requirement id="2.2.">
  1796. <description>
  1797. <text>
  1798. <default>
  1799. <style font-name="Verdana" font-size="12">
  1800. <text>
  1801. <solid-brush color="#FFE6E6E6" />
  1802. </text>
  1803. </style>
  1804. </default>
  1805. <styles />
  1806. <definition>
  1807. <sections>
  1808. <section name="">
  1809. <default-page>
  1810. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1811. <margins left="20" right="20" top="20" bottom="20" />
  1812. </page>
  1813. </default-page>
  1814. </section>
  1815. </sections>
  1816. </definition>
  1817. <content>
  1818. <paragraph>
  1819. <style numbering-type="None">
  1820. <numbering name="" multi-level="false">
  1821. <numbering-level type="None" level="0" format="{0}." />
  1822. </numbering>
  1823. </style>
  1824. <p>
  1825. <t>Application </t>
  1826. </p>
  1827. <p>
  1828. <t>constraints
  1829. </t>
  1830. </p>
  1831. </paragraph>
  1832. <paragraph>
  1833. <style numbering-type="None">
  1834. <numbering name="" multi-level="false">
  1835. <numbering-level type="None" level="0" format="{0}." />
  1836. </numbering>
  1837. </style>
  1838. <p>
  1839. <t>
  1840. </t>
  1841. </p>
  1842. </paragraph>
  1843. </content>
  1844. </text>
  1845. </description>
  1846. <priority>0</priority>
  1847. <index>1</index>
  1848. <row-height>0</row-height>
  1849. </requirement>
  1850. </item>
  1851. <item id="c776555b542842099176f5d00fbd63e4" cid="REQ002" type="requirement" name="RQ_SUP_TENANT" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 15:54:52">
  1852. <requirement id="1.2.">
  1853. <description>
  1854. <text>
  1855. <default>
  1856. <style font-name="Verdana" font-size="12">
  1857. <text>
  1858. <solid-brush color="#FFE6E6E6" />
  1859. </text>
  1860. </style>
  1861. </default>
  1862. <styles />
  1863. <definition>
  1864. <sections>
  1865. <section name="">
  1866. <default-page>
  1867. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1868. <margins left="20" right="20" top="20" bottom="20" />
  1869. </page>
  1870. </default-page>
  1871. </section>
  1872. </sections>
  1873. </definition>
  1874. <content>
  1875. <paragraph>
  1876. <style numbering-type="None">
  1877. <numbering name="" multi-level="false">
  1878. <numbering-level type="None" level="0" format="{0}." />
  1879. </numbering>
  1880. </style>
  1881. <p>
  1882. <t>Supports </t>
  1883. </p>
  1884. <p>
  1885. <t>tenant </t>
  1886. </p>
  1887. <p>
  1888. <t>access </t>
  1889. </p>
  1890. <p>
  1891. <t>to </t>
  1892. </p>
  1893. <p>
  1894. <t>data </t>
  1895. </p>
  1896. <p>
  1897. <t>and </t>
  1898. </p>
  1899. <p>
  1900. <t>functionality
  1901. </t>
  1902. </p>
  1903. </paragraph>
  1904. <paragraph>
  1905. <style numbering-type="None">
  1906. <numbering name="" multi-level="false">
  1907. <numbering-level type="None" level="0" format="{0}." />
  1908. </numbering>
  1909. </style>
  1910. <p>
  1911. <t>
  1912. </t>
  1913. </p>
  1914. </paragraph>
  1915. </content>
  1916. </text>
  1917. </description>
  1918. <priority>0</priority>
  1919. <index>1</index>
  1920. <row-height>0</row-height>
  1921. </requirement>
  1922. </item>
  1923. <item id="f3f58833e12d41adbad092d5fa821ae6" cid="REQ008" type="requirement" name="RQ_FUNC_SUP" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:04:21">
  1924. <requirement id="1.">
  1925. <description>
  1926. <text>
  1927. <default>
  1928. <style font-name="Verdana" font-size="12">
  1929. <text>
  1930. <solid-brush color="#FFE6E6E6" />
  1931. </text>
  1932. </style>
  1933. </default>
  1934. <styles />
  1935. <definition>
  1936. <sections>
  1937. <section name="">
  1938. <default-page>
  1939. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1940. <margins left="20" right="20" top="20" bottom="20" />
  1941. </page>
  1942. </default-page>
  1943. </section>
  1944. </sections>
  1945. </definition>
  1946. <content>
  1947. <paragraph>
  1948. <style numbering-type="None">
  1949. <numbering name="" multi-level="false">
  1950. <numbering-level type="None" level="0" format="{0}." />
  1951. </numbering>
  1952. </style>
  1953. <p>
  1954. <t>Functionality
  1955. </t>
  1956. </p>
  1957. </paragraph>
  1958. </content>
  1959. </text>
  1960. </description>
  1961. <priority>0</priority>
  1962. <index>0</index>
  1963. <row-height>0</row-height>
  1964. <requirement ref="c42a187a572a4c2c80d005bf4ea52f65" />
  1965. <requirement ref="c776555b542842099176f5d00fbd63e4" />
  1966. <requirement ref="b2345a523c6b4b969a3fc4b92c2a427e" />
  1967. </requirement>
  1968. </item>
  1969. <item id="c54c944000d84837bbb378cebd81a4e2" cid="REQ011" type="requirement" name="RQ_CSTR_DB" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:07:27">
  1970. <requirement id="2.1.">
  1971. <description>
  1972. <text>
  1973. <default>
  1974. <style font-name="Verdana" font-size="12">
  1975. <text>
  1976. <solid-brush color="#FFE6E6E6" />
  1977. </text>
  1978. </style>
  1979. </default>
  1980. <styles />
  1981. <definition>
  1982. <sections>
  1983. <section name="">
  1984. <default-page>
  1985. <page size="210,297" header-offset="15" footer-offset="15" unit="mm">
  1986. <margins left="20" right="20" top="20" bottom="20" />
  1987. </page>
  1988. </default-page>
  1989. </section>
  1990. </sections>
  1991. </definition>
  1992. <content>
  1993. <paragraph>
  1994. <style numbering-type="None">
  1995. <numbering name="" multi-level="false">
  1996. <numbering-level type="None" level="0" format="{0}." />
  1997. </numbering>
  1998. </style>
  1999. <p>
  2000. <t>Database </t>
  2001. </p>
  2002. <p>
  2003. <t>constraints
  2004. </t>
  2005. </p>
  2006. </paragraph>
  2007. </content>
  2008. </text>
  2009. </description>
  2010. <priority>0</priority>
  2011. <index>0</index>
  2012. <row-height>0</row-height>
  2013. <requirement ref="7888a9de9bb14ac0a6fadd2418d0d7a6" />
  2014. <requirement ref="f57cd7c78a5e483ebb3edb6a59957a97" />
  2015. </requirement>
  2016. </item>
  2017. <item id="fbc97786a07c4aaa90c643ba77619c6e" cid="REL012" type="relationship" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="09/15/2022 16:07:51" from="f2c72e50f02843f08f5a7b84d1b0047f" to="0a48454de005413c92e4a5cce0d2982c" visibility="package">
  2018. <relation from="f2c72e50f02843f08f5a7b84d1b0047f" to="0a48454de005413c92e4a5cce0d2982c" derived="false">
  2019. <start-role id="umlar-57ac9deb-eb59-4288-8b46-5dfe7e6806d5" name="" navigability="" association-type="association" visibility="private" />
  2020. <end-role id="umlar-514389a4-6158-4bb8-9b94-96bddb68daf5" name="" navigability="" association-type="composition" visibility="private" />
  2021. </relation>
  2022. </item>
  2023. </abstract-items>
  2024. <layer id="142a29da37304668873356c338030d64" name="Default" visible="true" enabled="true" locked="false">
  2025. <item id="c42a187a572a4c2c80d005bf4ea52f65" iid="ef0d3dc3c7534c9c8d5b86c3414dba49" creation-date="09/15/2022 15:54:52" order-index="0" type="entity">
  2026. <layout ax="0" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2027. </item>
  2028. <item id="c776555b542842099176f5d00fbd63e4" iid="dbc34015133944c7b06cd58fdb6baba8" creation-date="09/15/2022 15:54:52" order-index="1" type="entity">
  2029. <layout ax="160" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2030. </item>
  2031. <item id="ba48530a7b5245a7b6efcf3d8e61f067" iid="590a876d59524d5a9ff4472f671749f8" creation-date="09/15/2022 15:56:20" order-index="2" type="entity">
  2032. <layout ax="1200" ay="0" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2033. </item>
  2034. <item id="d3486fe91b1f476e8a3393099f04e99e" iid="769b7c24075247bea432653a6094610c" creation-date="09/15/2022 15:57:00" order-index="3" type="entity">
  2035. <layout ax="960" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2036. </item>
  2037. <item id="c19c4449f012422dbba1ddec55021b44" iid="aeeed071d62842828a1bc5e289ebdf31" creation-date="09/15/2022 15:57:00" order-index="4" type="relation">
  2038. <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">
  2039. <points>
  2040. <point x="1100" y="229" />
  2041. <point x="1200" y="141" />
  2042. </points>
  2043. </layout>
  2044. <relation from="d3486fe91b1f476e8a3393099f04e99e" from-iid="769b7c24075247bea432653a6094610c" to="ba48530a7b5245a7b6efcf3d8e61f067" to-iid="590a876d59524d5a9ff4472f671749f8" />
  2045. </item>
  2046. <item id="05792695378d4e0fa3cdd3681474e8f6" iid="0f0d87d84f0444aeb6049b006cbe38ec" creation-date="09/15/2022 15:58:04" order-index="5" type="entity">
  2047. <layout ax="1120" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2048. </item>
  2049. <item id="ce75414afc48414db34ec56233570770" iid="1553ab8748104a02a08b3109dbac3a53" creation-date="09/15/2022 15:58:04" order-index="6" type="relation">
  2050. <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">
  2051. <points>
  2052. <point x="1220" y="210" />
  2053. <point x="1240" y="160" />
  2054. </points>
  2055. </layout>
  2056. <relation from="05792695378d4e0fa3cdd3681474e8f6" from-iid="0f0d87d84f0444aeb6049b006cbe38ec" to="ba48530a7b5245a7b6efcf3d8e61f067" to-iid="590a876d59524d5a9ff4472f671749f8" />
  2057. </item>
  2058. <item id="cc5e96719a7b4470b17001e1bc806b61" iid="e1f9e63dddc7477d84b7086014da3246" creation-date="09/15/2022 15:59:19" order-index="7" type="entity">
  2059. <layout ax="1280" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2060. </item>
  2061. <item id="d31aa3cec9784517b6f38b38341c1799" iid="85e6fba6ee5840848c36926369f05e57" creation-date="09/15/2022 15:59:19" order-index="8" type="relation">
  2062. <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">
  2063. <points>
  2064. <point x="1320" y="210" />
  2065. <point x="1300" y="160" />
  2066. </points>
  2067. </layout>
  2068. <relation from="cc5e96719a7b4470b17001e1bc806b61" from-iid="e1f9e63dddc7477d84b7086014da3246" to="ba48530a7b5245a7b6efcf3d8e61f067" to-iid="590a876d59524d5a9ff4472f671749f8" />
  2069. </item>
  2070. <item id="c34f0bc111894b608624e52c0815c07a" iid="fa705d4f1e714eb3abe299e984d05976" creation-date="09/15/2022 16:02:23" order-index="9" type="entity">
  2071. <layout ax="1440" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2072. </item>
  2073. <item id="57b3095ce64f4492bf2b9b93738232bf" iid="bffba19bf8d14e9faa63ce8103a20b9f" creation-date="09/15/2022 16:02:23" order-index="10" type="relation">
  2074. <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">
  2075. <points>
  2076. <point x="1440" y="229" />
  2077. <point x="1340" y="141" />
  2078. </points>
  2079. </layout>
  2080. <relation from="c34f0bc111894b608624e52c0815c07a" from-iid="fa705d4f1e714eb3abe299e984d05976" to="ba48530a7b5245a7b6efcf3d8e61f067" to-iid="590a876d59524d5a9ff4472f671749f8" />
  2081. </item>
  2082. <item id="f3f58833e12d41adbad092d5fa821ae6" iid="34c2cdfe8fe947ecb22185febc978355" creation-date="09/15/2022 16:04:21" order-index="11" type="entity">
  2083. <layout ax="160" ay="0" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2084. </item>
  2085. <item id="6236eeabf4f94d1984205fd7fcb75b72" iid="b0460ad75397461abc49940fb32669c6" creation-date="09/15/2022 16:04:52" order-index="12" type="relation">
  2086. <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">
  2087. <points>
  2088. <point x="131" y="210" />
  2089. <point x="169" y="160" />
  2090. </points>
  2091. </layout>
  2092. <relation from="c42a187a572a4c2c80d005bf4ea52f65" from-iid="ef0d3dc3c7534c9c8d5b86c3414dba49" to="f3f58833e12d41adbad092d5fa821ae6" to-iid="34c2cdfe8fe947ecb22185febc978355" />
  2093. </item>
  2094. <item id="b8f1b1ee8380442a9b9806bcaabd60e1" iid="0a37c13b2a6142baab26e9eb774b2d91" creation-date="09/15/2022 16:04:56" order-index="13" type="relation">
  2095. <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">
  2096. <points>
  2097. <point x="230" y="210" />
  2098. <point x="230" y="160" />
  2099. </points>
  2100. </layout>
  2101. <relation from="c776555b542842099176f5d00fbd63e4" from-iid="dbc34015133944c7b06cd58fdb6baba8" to="f3f58833e12d41adbad092d5fa821ae6" to-iid="34c2cdfe8fe947ecb22185febc978355" />
  2102. </item>
  2103. <item id="b2345a523c6b4b969a3fc4b92c2a427e" iid="0927835d3a8e47e9a129bc83681c14b2" creation-date="09/15/2022 16:05:39" order-index="14" type="entity">
  2104. <layout ax="320" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2105. </item>
  2106. <item id="2ffa044974b44d11a13593ba0173375b" iid="de44e430bcf54390a9b5063c2953ed62" creation-date="09/15/2022 16:05:39" order-index="15" type="relation">
  2107. <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">
  2108. <points>
  2109. <point x="329" y="210" />
  2110. <point x="291" y="160" />
  2111. </points>
  2112. </layout>
  2113. <relation from="b2345a523c6b4b969a3fc4b92c2a427e" from-iid="0927835d3a8e47e9a129bc83681c14b2" to="f3f58833e12d41adbad092d5fa821ae6" to-iid="34c2cdfe8fe947ecb22185febc978355" />
  2114. </item>
  2115. <item id="0a48454de005413c92e4a5cce0d2982c" iid="94bae0777f80427c8614e13788828305" creation-date="09/15/2022 16:07:00" order-index="16" type="entity">
  2116. <layout ax="640" ay="0" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2117. </item>
  2118. <item id="c54c944000d84837bbb378cebd81a4e2" iid="4b2d4bb4faf54600970aadb1386122d9" creation-date="09/15/2022 16:07:27" order-index="17" type="entity">
  2119. <layout ax="560" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2120. </item>
  2121. <item id="613bacfba1584c98951c8961e3c0cc5e" iid="ec3d371dc2994470b6334a6757e94560" creation-date="09/15/2022 16:07:27" order-index="18" type="relation">
  2122. <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">
  2123. <points>
  2124. <point x="660" y="210" />
  2125. <point x="680" y="160" />
  2126. </points>
  2127. </layout>
  2128. <relation from="c54c944000d84837bbb378cebd81a4e2" from-iid="4b2d4bb4faf54600970aadb1386122d9" to="0a48454de005413c92e4a5cce0d2982c" to-iid="94bae0777f80427c8614e13788828305" />
  2129. </item>
  2130. <item id="f2c72e50f02843f08f5a7b84d1b0047f" iid="3f442c69c7894baab327bd10228093bd" creation-date="09/15/2022 16:07:51" order-index="19" type="entity">
  2131. <layout ax="800" ay="210" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2132. </item>
  2133. <item id="fbc97786a07c4aaa90c643ba77619c6e" iid="7ef7a00004c64c1c87085786665f2f8a" creation-date="09/15/2022 16:07:51" order-index="20" type="relation">
  2134. <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">
  2135. <points>
  2136. <point x="809" y="210" />
  2137. <point x="771" y="160" />
  2138. </points>
  2139. </layout>
  2140. <relation from="f2c72e50f02843f08f5a7b84d1b0047f" from-iid="3f442c69c7894baab327bd10228093bd" to="0a48454de005413c92e4a5cce0d2982c" to-iid="94bae0777f80427c8614e13788828305" />
  2141. </item>
  2142. <item id="7888a9de9bb14ac0a6fadd2418d0d7a6" iid="793d4718c8eb490e9e0722a2a8a68c07" creation-date="09/15/2022 16:08:33" order-index="21" type="entity">
  2143. <layout ax="480" ay="420" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2144. </item>
  2145. <item id="4db2cc42f34c4caa94683e00c470b9da" iid="0d4d3fa8a9284fcfb762650b6e3d1014" creation-date="09/15/2022 16:08:33" order-index="22" type="relation">
  2146. <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">
  2147. <points>
  2148. <point x="580" y="420" />
  2149. <point x="600" y="370" />
  2150. </points>
  2151. </layout>
  2152. <relation from="7888a9de9bb14ac0a6fadd2418d0d7a6" from-iid="793d4718c8eb490e9e0722a2a8a68c07" to="c54c944000d84837bbb378cebd81a4e2" to-iid="4b2d4bb4faf54600970aadb1386122d9" />
  2153. </item>
  2154. <item id="f57cd7c78a5e483ebb3edb6a59957a97" iid="db9a6d1f2f57491b9e330d1441bc27e0" creation-date="09/15/2022 16:09:33" order-index="23" type="entity">
  2155. <layout ax="640" ay="420" awidth="140" aheight="160" x="50" y="50" width="140" height="160" />
  2156. </item>
  2157. <item id="b92a1d894874430fb846cd4ffebbe4e1" iid="559626d61b274c29b7222b8071726dc2" creation-date="09/15/2022 16:09:33" order-index="24" type="relation">
  2158. <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">
  2159. <points>
  2160. <point x="680" y="420" />
  2161. <point x="660" y="370" />
  2162. </points>
  2163. </layout>
  2164. <relation from="f57cd7c78a5e483ebb3edb6a59957a97" from-iid="db9a6d1f2f57491b9e330d1441bc27e0" to="c54c944000d84837bbb378cebd81a4e2" to-iid="4b2d4bb4faf54600970aadb1386122d9" />
  2165. </item>
  2166. </layer>
  2167. </diagram>
  2168. </model>
  2169. <model id="pcb9044279dee459f9eaa1fb8d4fe6bf3_148351808" name="Database" namespace="" order-index="2" default-type-set="MSSQL" expanded="true">
  2170. <meta>
  2171. <authors>
  2172. <author>Dalibor Votruba</author>
  2173. </authors>
  2174. <description />
  2175. <creation-date>11/04/2022 05:56:57</creation-date>
  2176. <change-date>01/01/0001 00:00:00</change-date>
  2177. <revision-count>0</revision-count>
  2178. <version />
  2179. </meta>
  2180. <abstract-items />
  2181. <sub-models>
  2182. <model id="ped66179a97834e0ca74f024bc91be326_173380611" name="Base" namespace="" order-index="2" expanded="true">
  2183. <meta>
  2184. <authors>
  2185. <author>Dalibor Votruba</author>
  2186. </authors>
  2187. <description />
  2188. <creation-date>11/04/2022 08:34:43</creation-date>
  2189. <change-date>01/01/0001 00:00:00</change-date>
  2190. <revision-count>0</revision-count>
  2191. <version />
  2192. </meta>
  2193. <abstract-items />
  2194. <sub-models />
  2195. <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">
  2196. <style>
  2197. <background-color index="1" color="#FFFFFFFF" />
  2198. <background-color index="2" color="#FFFFFFFF" />
  2199. <background-type type="solid" />
  2200. </style>
  2201. <meta>
  2202. <authors>
  2203. <author>Dalibor Votruba</author>
  2204. </authors>
  2205. <description />
  2206. <creation-date>11/04/2022 05:59:30</creation-date>
  2207. <change-date>11/05/2022 09:28:10</change-date>
  2208. <revision-count>0</revision-count>
  2209. <version>1.0.0.0</version>
  2210. </meta>
  2211. <abstract-items>
  2212. <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">
  2213. <stereotypes>
  2214. <stereotype name="relation" />
  2215. </stereotypes>
  2216. <stereotype-instances>
  2217. <stereotype id="7e382f0a73dd4e12b0db78aea55eb53b_relation_c" type="relation" ref="" />
  2218. </stereotype-instances>
  2219. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  2220. <attribute-pairs>
  2221. <attribute-pair from-attribute="ac565ef6d613e4ce395193ba85470dd24288" to-attribute="aeedb6cafa13c432289059d4aeee86fbf868" />
  2222. </attribute-pairs>
  2223. </erd-relation>
  2224. </item>
  2225. <item id="1995ba399cb24729b4df7bbbc0c77b31" cid="TBL_SETTING" type="erd-entity" name="Setting" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/04/2022 06:37:09">
  2226. <stereotypes>
  2227. <stereotype name="table" />
  2228. </stereotypes>
  2229. <stereotype-instances>
  2230. <stereotype id="1995ba399cb24729b4df7bbbc0c77b31_table_c" type="table" ref="" />
  2231. </stereotype-instances>
  2232. <entity pk-constraint-name="PK_SETTING_ID" description="" />
  2233. <attributes>
  2234. <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" />
  2235. <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" />
  2236. <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" />
  2237. <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" />
  2238. <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" />
  2239. <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" />
  2240. <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" />
  2241. <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" />
  2242. <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" />
  2243. <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" />
  2244. <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" />
  2245. <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" />
  2246. <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" />
  2247. </attributes>
  2248. <indexes>
  2249. <index uid="ix47d475815cf546db98d5f77def2062a053" cid="ERI003" name="IDX_SETTING_TENANT_MCODE_CODE" is-unique="true">
  2250. <index-attributes>
  2251. <index-attribute ref="ac6d5df86cafd42679955a33396a23de5550" sort="Asc" non-key="false" />
  2252. <index-attribute ref="a86d9f9ac361249ab9905468baf25092a181" sort="Asc" non-key="false" />
  2253. <index-attribute ref="ae3252c151d6c4eac949dda3b840d19d1410" sort="Asc" non-key="false" />
  2254. </index-attributes>
  2255. </index>
  2256. </indexes>
  2257. </item>
  2258. <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">
  2259. <stereotypes>
  2260. <stereotype name="table" />
  2261. </stereotypes>
  2262. <stereotype-instances>
  2263. <stereotype id="031a668b1d6a45e1907a612d85b43d24_table_c" type="table" ref="" />
  2264. </stereotype-instances>
  2265. <style class="Flat Green" />
  2266. <entity pk-constraint-name="PK_USER_ID" description="" />
  2267. <attributes>
  2268. <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" />
  2269. <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" />
  2270. <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" />
  2271. <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" />
  2272. <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" />
  2273. <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" />
  2274. </attributes>
  2275. <indexes>
  2276. <index uid="ix930d9e826b994061b0f09816b8444d28973" cid="ERI004" name="IDX_USER_LOGINNAME" is-unique="true">
  2277. <index-attributes>
  2278. <index-attribute ref="a7561c31027e444b7b5d5c9bc65164f69709" sort="Asc" non-key="false" />
  2279. </index-attributes>
  2280. </index>
  2281. </indexes>
  2282. </item>
  2283. <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">
  2284. <stereotypes>
  2285. <stereotype name="relation" />
  2286. </stereotypes>
  2287. <stereotype-instances>
  2288. <stereotype id="eed22cb50bf14a369a44386ecff2eddf_relation_c" type="relation" ref="" />
  2289. </stereotype-instances>
  2290. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="0..1">
  2291. <attribute-pairs>
  2292. <attribute-pair from-attribute="a08479372eb77415d9e7fc24b12fd0d42593" to-attribute="a43f81acbacea4b5eb1ab53c404241e92410" />
  2293. </attribute-pairs>
  2294. </erd-relation>
  2295. </item>
  2296. <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">
  2297. <stereotypes>
  2298. <stereotype name="relation" />
  2299. </stereotypes>
  2300. <stereotype-instances>
  2301. <stereotype id="38364cd5ebf7433c827087a1d94c73ca_relation_c" type="relation" ref="" />
  2302. </stereotype-instances>
  2303. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="0..1">
  2304. <attribute-pairs>
  2305. <attribute-pair from-attribute="a6e7eae435a0345fea29288220aa8aa1d623" to-attribute="a6dda4862ea794595834ccbbeacdb68a8699" />
  2306. </attribute-pairs>
  2307. </erd-relation>
  2308. </item>
  2309. <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">
  2310. <stereotypes>
  2311. <stereotype name="relation" />
  2312. </stereotypes>
  2313. <stereotype-instances>
  2314. <stereotype id="7b432831355f42cfa41af8f2eaa783a3_relation_c" type="relation" ref="" />
  2315. </stereotype-instances>
  2316. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="0..1">
  2317. <attribute-pairs>
  2318. <attribute-pair from-attribute="ac6d5df86cafd42679955a33396a23de5550" to-attribute="aeda82a68426646d3a6cfa276db9bd56f255" />
  2319. </attribute-pairs>
  2320. </erd-relation>
  2321. </item>
  2322. <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">
  2323. <stereotypes>
  2324. <stereotype name="relation" />
  2325. </stereotypes>
  2326. <stereotype-instances>
  2327. <stereotype id="ccc94b03e9f14adf85defc647f594921_relation_c" type="relation" ref="" />
  2328. </stereotype-instances>
  2329. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  2330. <attribute-pairs>
  2331. <attribute-pair from-attribute="ab59af341336049cab67540f6403cce1425" to-attribute="ab12dbe3ddb0e44da817555c631a0bcdd360" />
  2332. </attribute-pairs>
  2333. </erd-relation>
  2334. </item>
  2335. <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">
  2336. <stereotypes>
  2337. <stereotype name="relation" />
  2338. </stereotypes>
  2339. <stereotype-instances>
  2340. <stereotype id="06c92dd941704baf86d79ecead01e134_relation_c" type="relation" ref="" />
  2341. </stereotype-instances>
  2342. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="0..1">
  2343. <attribute-pairs>
  2344. <attribute-pair from-attribute="ab59b0b6bdd31441c89af642f0131a84b208" to-attribute="aeda82a68426646d3a6cfa276db9bd56f255" />
  2345. </attribute-pairs>
  2346. </erd-relation>
  2347. </item>
  2348. <item id="84a3ecb6b97b4e9cbcf5d8255039f80c" cid="ENT005" type="erd-entity" name="Country" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:12:36">
  2349. <stereotypes>
  2350. <stereotype name="table" />
  2351. </stereotypes>
  2352. <stereotype-instances>
  2353. <stereotype id="84a3ecb6b97b4e9cbcf5d8255039f80c_table_c" type="table" ref="" />
  2354. </stereotype-instances>
  2355. <entity pk-constraint-name="PK_COUNTRY_ID" description="" />
  2356. <attributes>
  2357. <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" />
  2358. <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" />
  2359. <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" />
  2360. <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" />
  2361. <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" />
  2362. <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" />
  2363. <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" />
  2364. <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" />
  2365. </attributes>
  2366. <indexes>
  2367. <index uid="ix90c5220734a44edaa19e97e31c949089832" cid="ERI005" name="IDX_COUNTRY_CODE" is-unique="true">
  2368. <index-attributes>
  2369. <index-attribute ref="aee992231074d4df0b1c9b72d1434a01c129" sort="Asc" non-key="false" />
  2370. </index-attributes>
  2371. </index>
  2372. </indexes>
  2373. </item>
  2374. <item id="979e2dd2651742e08af31f818c22bf4e" cid="ENT007" type="erd-entity" name="TenantCountry" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:13:26">
  2375. <stereotypes>
  2376. <stereotype name="table" />
  2377. </stereotypes>
  2378. <stereotype-instances>
  2379. <stereotype id="979e2dd2651742e08af31f818c22bf4e_table_c" type="table" ref="" />
  2380. </stereotype-instances>
  2381. <entity description="" />
  2382. <attributes>
  2383. <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" />
  2384. <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" />
  2385. </attributes>
  2386. <indexes />
  2387. </item>
  2388. <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">
  2389. <stereotypes>
  2390. <stereotype name="relation" />
  2391. </stereotypes>
  2392. <stereotype-instances>
  2393. <stereotype id="a48a9211b03c407cbb288eded410b64a_relation_c" type="relation" ref="" />
  2394. </stereotype-instances>
  2395. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  2396. <attribute-pairs>
  2397. <attribute-pair from-attribute="af9002db56cf14129b96aa8a533353459288" to-attribute="aeda82a68426646d3a6cfa276db9bd56f255" />
  2398. </attribute-pairs>
  2399. </erd-relation>
  2400. </item>
  2401. <item id="1596d482602d4447b90d648ed5031bb4" cid="ENT008" type="erd-entity" name="TenantCurrency" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:15:25">
  2402. <stereotypes>
  2403. <stereotype name="table" />
  2404. </stereotypes>
  2405. <stereotype-instances>
  2406. <stereotype id="1596d482602d4447b90d648ed5031bb4_table_c" type="table" ref="" />
  2407. </stereotype-instances>
  2408. <entity description="" />
  2409. <attributes>
  2410. <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" />
  2411. <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" />
  2412. </attributes>
  2413. <indexes />
  2414. </item>
  2415. <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">
  2416. <stereotypes>
  2417. <stereotype name="table" />
  2418. </stereotypes>
  2419. <stereotype-instances>
  2420. <stereotype id="e50f79968a404d3fbb33f4a02fa3b572_table_c" type="table" ref="" />
  2421. </stereotype-instances>
  2422. <style class="Flat Green" />
  2423. <entity pk-constraint-name="PK_TENANT_ID" description="" />
  2424. <attributes>
  2425. <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" />
  2426. <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" />
  2427. <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" />
  2428. <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" />
  2429. <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" />
  2430. <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" />
  2431. <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" />
  2432. <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" />
  2433. </attributes>
  2434. <indexes>
  2435. <index uid="ix56f43349a41048239189cd74c2596595691" cid="ERI001" name="IDX_TENANT_CODE" is-unique="true">
  2436. <index-attributes>
  2437. <index-attribute ref="a4544d94868494f8aa9d8664a80f65fb9638" sort="Asc" non-key="false" />
  2438. </index-attributes>
  2439. </index>
  2440. </indexes>
  2441. </item>
  2442. <item id="cb80b20360f340559de7775b16dcf14f" cid="ENT006" type="erd-entity" name="Currency" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/05/2022 09:12:59">
  2443. <stereotypes>
  2444. <stereotype name="table" />
  2445. </stereotypes>
  2446. <stereotype-instances>
  2447. <stereotype id="cb80b20360f340559de7775b16dcf14f_table_c" type="table" ref="" />
  2448. </stereotype-instances>
  2449. <entity pk-constraint-name="PK_CURRENCY_ID" description="" />
  2450. <attributes>
  2451. <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" />
  2452. <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" />
  2453. <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" />
  2454. <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" />
  2455. <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" />
  2456. <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" />
  2457. <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" />
  2458. </attributes>
  2459. <indexes>
  2460. <index uid="ix900909c342d84f2ebe2f44e5dfa3f849750" cid="ERI006" name="IDX_CURRENCY_ID" is-unique="true">
  2461. <index-attributes>
  2462. <index-attribute ref="aed59b1c4df804811bfde90b55c6713b6712" sort="Asc" non-key="false" />
  2463. </index-attributes>
  2464. </index>
  2465. </indexes>
  2466. </item>
  2467. <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">
  2468. <stereotypes>
  2469. <stereotype name="relation" />
  2470. </stereotypes>
  2471. <stereotype-instances>
  2472. <stereotype id="4c112af66ef746a3897a3e2a89b04793_relation_c" type="relation" ref="" />
  2473. </stereotype-instances>
  2474. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  2475. <attribute-pairs>
  2476. <attribute-pair from-attribute="a743bc958b32142279f0be7a53e28a40f887" to-attribute="ab12dbe3ddb0e44da817555c631a0bcdd360" />
  2477. </attribute-pairs>
  2478. </erd-relation>
  2479. </item>
  2480. <item id="f7ba98ff46b54ebd99e6e9d48d4aeee9" cid="TBL_TENANTUSER" type="erd-entity" name="TenantUser" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/04/2022 06:22:55">
  2481. <stereotypes>
  2482. <stereotype name="table" />
  2483. </stereotypes>
  2484. <documentations>
  2485. <doc id="ef01e97791a84882b22a27717ea80d87">
  2486. <text>
  2487. <default>
  2488. <style font-name="Verdana" font-size="12">
  2489. <text>
  2490. <solid-brush color="#FFE6E6E6" />
  2491. </text>
  2492. </style>
  2493. </default>
  2494. <styles />
  2495. <definition>
  2496. <sections>
  2497. <section name="">
  2498. <default-page>
  2499. <page size="224,316.8" header-offset="15" footer-offset="15" unit="mm">
  2500. <margins left="20" right="20" top="20" bottom="20" />
  2501. </page>
  2502. </default-page>
  2503. </section>
  2504. </sections>
  2505. </definition>
  2506. <content>
  2507. <paragraph>
  2508. <style numbering-type="None">
  2509. <numbering name="" multi-level="false">
  2510. <numbering-level type="None" level="0" format="{0}." />
  2511. </numbering>
  2512. </style>
  2513. <p>
  2514. <t>Defines </t>
  2515. </p>
  2516. <p>
  2517. <t>User </t>
  2518. </p>
  2519. <p>
  2520. <t>- </t>
  2521. </p>
  2522. <p>
  2523. <t>Tenant </t>
  2524. </p>
  2525. <p>
  2526. <t>assignments
  2527. </t>
  2528. </p>
  2529. </paragraph>
  2530. </content>
  2531. </text>
  2532. </doc>
  2533. </documentations>
  2534. <stereotype-instances>
  2535. <stereotype id="f7ba98ff46b54ebd99e6e9d48d4aeee9_table_c" type="table" ref="" />
  2536. </stereotype-instances>
  2537. <entity description="" />
  2538. <attributes>
  2539. <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" />
  2540. <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" />
  2541. </attributes>
  2542. <indexes />
  2543. </item>
  2544. <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">
  2545. <stereotypes>
  2546. <stereotype name="relation" />
  2547. </stereotypes>
  2548. <stereotype-instances>
  2549. <stereotype id="de25be4a0e78494f885762b863143fd6_relation_c" type="relation" ref="" />
  2550. </stereotype-instances>
  2551. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  2552. <attribute-pairs>
  2553. <attribute-pair from-attribute="a1852ccbbf7aa4e3994563945086ea602887" to-attribute="aeda82a68426646d3a6cfa276db9bd56f255" />
  2554. </attribute-pairs>
  2555. </erd-relation>
  2556. </item>
  2557. </abstract-items>
  2558. <layer id="b333b4971a734e6baa084175a3160d2b" name="Default" visible="true" enabled="true" locked="false">
  2559. <item id="e50f79968a404d3fbb33f4a02fa3b572" iid="650877ac46234db3b6eaebe1730487f3" creation-date="11/04/2022 06:00:07" order-index="1" type="entity">
  2560. <layout ax="46" ay="196" awidth="303" aheight="249" x="46" y="196" width="289" height="249" rotation-center="-74.5,-15" />
  2561. <erd-entity show-nullability="true" />
  2562. </item>
  2563. <item id="031a668b1d6a45e1907a612d85b43d24" iid="a609608a496e484594e771e9df2378b1" creation-date="11/04/2022 06:15:45" order-index="2" type="entity">
  2564. <layout ax="715" ay="234" awidth="359" aheight="211" x="715" y="234" width="359" height="211" rotation-center="109.5,25.5" />
  2565. <erd-entity show-nullability="true" />
  2566. </item>
  2567. <item id="f7ba98ff46b54ebd99e6e9d48d4aeee9" iid="2dcf80fa31b04f5d9d8fb156c7bafd9d" creation-date="11/04/2022 06:22:55" order-index="3" type="entity">
  2568. <layout ax="417" ay="22" awidth="244" aheight="106" x="417" y="22" width="244" height="106" rotation-center="-52,27" />
  2569. <erd-entity show-nullability="true" />
  2570. </item>
  2571. <item id="06c92dd941704baf86d79ecead01e134" iid="f3fbd42c29244163bdf1c415cf9d3bd6" creation-date="11/04/2022 06:26:57" order-index="4" type="relation">
  2572. <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">
  2573. <points>
  2574. <point x="417" y="80" />
  2575. <point x="349" y="254" />
  2576. </points>
  2577. </layout>
  2578. <relation from="f7ba98ff46b54ebd99e6e9d48d4aeee9" from-iid="2dcf80fa31b04f5d9d8fb156c7bafd9d" from-field="ab59b0b6bdd31441c89af642f0131a84b208" to="e50f79968a404d3fbb33f4a02fa3b572" to-iid="650877ac46234db3b6eaebe1730487f3" to-field="aeda82a68426646d3a6cfa276db9bd56f255" />
  2579. </item>
  2580. <item id="38364cd5ebf7433c827087a1d94c73ca" iid="1fa21a2a11ad4254bea8013c1ab0a8ab" creation-date="11/04/2022 06:28:44" order-index="5" type="relation">
  2581. <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">
  2582. <points>
  2583. <point x="661" y="100" />
  2584. <point x="715" y="292" />
  2585. </points>
  2586. </layout>
  2587. <relation from="f7ba98ff46b54ebd99e6e9d48d4aeee9" from-iid="2dcf80fa31b04f5d9d8fb156c7bafd9d" from-field="a6e7eae435a0345fea29288220aa8aa1d623" to="031a668b1d6a45e1907a612d85b43d24" to-iid="a609608a496e484594e771e9df2378b1" to-field="a6dda4862ea794595834ccbbeacdb68a8699" />
  2588. </item>
  2589. <item id="1995ba399cb24729b4df7bbbc0c77b31" iid="e5447239d5c14feda620a1961c696222" creation-date="11/04/2022 06:37:09" order-index="6" type="entity">
  2590. <layout ax="485" ay="462" awidth="295" aheight="357" x="485" y="462" width="288" height="354" rotation-center="-74,97" />
  2591. <erd-entity show-nullability="true" />
  2592. </item>
  2593. <item id="eed22cb50bf14a369a44386ecff2eddf" iid="4e5e6f2ee730402aba46c57baef5c4dc" creation-date="11/04/2022 06:46:59" order-index="7" type="relation">
  2594. <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">
  2595. <points>
  2596. <point x="485" y="540" />
  2597. <point x="138" y="539" />
  2598. <point x="138" y="521" />
  2599. <point x="485" y="520" />
  2600. </points>
  2601. </layout>
  2602. <relation from="1995ba399cb24729b4df7bbbc0c77b31" from-iid="e5447239d5c14feda620a1961c696222" from-field="a08479372eb77415d9e7fc24b12fd0d42593" to="1995ba399cb24729b4df7bbbc0c77b31" to-iid="e5447239d5c14feda620a1961c696222" to-field="a43f81acbacea4b5eb1ab53c404241e92410" />
  2603. </item>
  2604. <item id="7b432831355f42cfa41af8f2eaa783a3" iid="381c2c03d0f6492eb465f91a44a7cc72" creation-date="11/04/2022 06:48:42" order-index="8" type="relation">
  2605. <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">
  2606. <points>
  2607. <point x="485" y="558" />
  2608. <point x="349" y="254" />
  2609. </points>
  2610. </layout>
  2611. <relation from="1995ba399cb24729b4df7bbbc0c77b31" from-iid="e5447239d5c14feda620a1961c696222" from-field="ac6d5df86cafd42679955a33396a23de5550" to="e50f79968a404d3fbb33f4a02fa3b572" to-iid="650877ac46234db3b6eaebe1730487f3" to-field="aeda82a68426646d3a6cfa276db9bd56f255" />
  2612. </item>
  2613. <item id="84a3ecb6b97b4e9cbcf5d8255039f80c" iid="e5295bc500524045bec12462bb4bf306" creation-date="11/05/2022 09:12:36" order-index="9" type="entity">
  2614. <layout ax="867" ay="492" awidth="207" aheight="268" x="867" y="492" width="207" height="268" rotation-center="-33.5,15" />
  2615. <erd-entity show-nullability="true" />
  2616. </item>
  2617. <item id="cb80b20360f340559de7775b16dcf14f" iid="0699c36719a449eaa54119a347bbcfad" creation-date="11/05/2022 09:12:59" order-index="10" type="entity">
  2618. <layout ax="1210" ay="511" awidth="207" aheight="249" x="1210" y="511" width="207" height="249" rotation-center="-33.5,44.5" />
  2619. <erd-entity show-nullability="true" />
  2620. </item>
  2621. <item id="979e2dd2651742e08af31f818c22bf4e" iid="4be9c584480042c18525567fede0988e" creation-date="11/05/2022 09:13:26" order-index="11" type="entity">
  2622. <layout ax="397" ay="1001" awidth="140" aheight="160" x="397" y="1001" width="140" height="160" />
  2623. <erd-entity show-nullability="true" />
  2624. </item>
  2625. <item id="1596d482602d4447b90d648ed5031bb4" iid="0a741e375b0447b39b7312de458e5700" creation-date="11/05/2022 09:15:25" order-index="12" type="entity">
  2626. <layout ax="640" ay="1001" awidth="140" aheight="160" x="640" y="1001" width="140" height="160" />
  2627. <erd-entity show-nullability="true" />
  2628. </item>
  2629. <item id="a48a9211b03c407cbb288eded410b64a" iid="b61d22b25ba94c74a4a73e12d756729e" creation-date="11/05/2022 09:24:18" order-index="13" type="relation">
  2630. <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">
  2631. <points>
  2632. <point x="397" y="1068" />
  2633. <point x="-4" y="578" />
  2634. <point x="46" y="255" />
  2635. </points>
  2636. </layout>
  2637. <relation from="979e2dd2651742e08af31f818c22bf4e" from-iid="4be9c584480042c18525567fede0988e" from-field="af9002db56cf14129b96aa8a533353459288" to="e50f79968a404d3fbb33f4a02fa3b572" to-iid="650877ac46234db3b6eaebe1730487f3" to-field="aeda82a68426646d3a6cfa276db9bd56f255" />
  2638. </item>
  2639. <item id="de25be4a0e78494f885762b863143fd6" iid="0cb2e30a53f948de9705e964b9ddc626" creation-date="11/05/2022 09:25:11" order-index="14" type="relation">
  2640. <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">
  2641. <points>
  2642. <point x="640" y="1068" />
  2643. <point x="349" y="254" />
  2644. </points>
  2645. </layout>
  2646. <relation from="1596d482602d4447b90d648ed5031bb4" from-iid="0a741e375b0447b39b7312de458e5700" from-field="a1852ccbbf7aa4e3994563945086ea602887" to="e50f79968a404d3fbb33f4a02fa3b572" to-iid="650877ac46234db3b6eaebe1730487f3" to-field="aeda82a68426646d3a6cfa276db9bd56f255" />
  2647. </item>
  2648. <item id="7e382f0a73dd4e12b0db78aea55eb53b" iid="e54512e850ec437e821ff92e642823d7" creation-date="11/05/2022 09:25:51" order-index="15" type="relation">
  2649. <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">
  2650. <points>
  2651. <point x="537" y="1105" />
  2652. <point x="867" y="550" />
  2653. </points>
  2654. </layout>
  2655. <relation from="979e2dd2651742e08af31f818c22bf4e" from-iid="4be9c584480042c18525567fede0988e" from-field="ac565ef6d613e4ce395193ba85470dd24288" to="84a3ecb6b97b4e9cbcf5d8255039f80c" to-iid="e5295bc500524045bec12462bb4bf306" to-field="aeedb6cafa13c432289059d4aeee86fbf868" />
  2656. </item>
  2657. <item id="4c112af66ef746a3897a3e2a89b04793" iid="9f9cb55162264293932c82ef14cfccfc" creation-date="11/05/2022 09:26:21" order-index="16" type="relation">
  2658. <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">
  2659. <points>
  2660. <point x="780" y="1105" />
  2661. <point x="1210" y="570" />
  2662. </points>
  2663. </layout>
  2664. <relation from="1596d482602d4447b90d648ed5031bb4" from-iid="0a741e375b0447b39b7312de458e5700" from-field="a743bc958b32142279f0be7a53e28a40f887" to="cb80b20360f340559de7775b16dcf14f" to-iid="0699c36719a449eaa54119a347bbcfad" to-field="ab12dbe3ddb0e44da817555c631a0bcdd360" />
  2665. </item>
  2666. <item id="ccc94b03e9f14adf85defc647f594921" iid="fd3ea7c46e3148d5aaa1b21aaba2be5d" creation-date="11/05/2022 09:28:10" order-index="17" type="relation">
  2667. <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">
  2668. <points>
  2669. <point x="1074" y="710" />
  2670. <point x="1210" y="570" />
  2671. </points>
  2672. </layout>
  2673. <relation from="84a3ecb6b97b4e9cbcf5d8255039f80c" from-iid="e5295bc500524045bec12462bb4bf306" from-field="ab59af341336049cab67540f6403cce1425" to="cb80b20360f340559de7775b16dcf14f" to-iid="0699c36719a449eaa54119a347bbcfad" to-field="ab12dbe3ddb0e44da817555c631a0bcdd360" />
  2674. </item>
  2675. </layer>
  2676. </diagram>
  2677. </model>
  2678. <model id="pf57f34439eda4ac6afd78999af5cbf01_478287017" name="Customer" namespace="" order-index="3" expanded="true">
  2679. <meta>
  2680. <authors>
  2681. <author> </author>
  2682. </authors>
  2683. <description />
  2684. <creation-date>11/06/2022 04:31:12</creation-date>
  2685. <change-date>01/01/0001 00:00:00</change-date>
  2686. <revision-count>0</revision-count>
  2687. <version />
  2688. </meta>
  2689. <abstract-items />
  2690. <sub-models />
  2691. <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">
  2692. <style>
  2693. <background-color index="1" color="#FFFFFFFF" />
  2694. <background-color index="2" color="#FFFFFFFF" />
  2695. <background-type type="solid" />
  2696. </style>
  2697. <meta>
  2698. <authors>
  2699. <author />
  2700. </authors>
  2701. <description />
  2702. <creation-date>11/06/2022 04:32:13</creation-date>
  2703. <change-date>11/06/2022 05:34:48</change-date>
  2704. <revision-count>0</revision-count>
  2705. <version>1.0.0.0</version>
  2706. </meta>
  2707. <abstract-items>
  2708. <item id="6037f78c46de439abe802ae4987eae0a" cid="ENT010" type="erd-entity" name="Contact" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 04:33:28">
  2709. <stereotypes>
  2710. <stereotype name="table" />
  2711. </stereotypes>
  2712. <stereotype-instances>
  2713. <stereotype id="6037f78c46de439abe802ae4987eae0a_table_c" type="table" ref="" />
  2714. </stereotype-instances>
  2715. <entity pk-constraint-name="PK_CONTACT_ID" description="" />
  2716. <attributes>
  2717. <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" />
  2718. <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" />
  2719. <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" />
  2720. <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" />
  2721. <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" />
  2722. <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" />
  2723. <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" />
  2724. <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" />
  2725. <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" />
  2726. <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" />
  2727. <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" />
  2728. <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" />
  2729. <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" />
  2730. <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" />
  2731. </attributes>
  2732. <indexes />
  2733. </item>
  2734. <item id="eabde8039f1144d4ac8b37265634e7c0" cid="ENT011" type="erd-entity" name="CustomerUser" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 04:47:49">
  2735. <entity description="" />
  2736. <attributes>
  2737. <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" />
  2738. <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" />
  2739. </attributes>
  2740. <indexes />
  2741. </item>
  2742. <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">
  2743. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  2744. <attribute-pairs>
  2745. <attribute-pair from-attribute="a7d91a9dcefc7413693b670bc1bade5b0933" to-attribute="a74daa4a768ac415a847eca4c642554a1556" />
  2746. </attribute-pairs>
  2747. </erd-relation>
  2748. </item>
  2749. <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">
  2750. <stereotypes>
  2751. <stereotype name="relation" />
  2752. </stereotypes>
  2753. <stereotype-instances>
  2754. <stereotype id="8b63817a9750491bb98314f94a40c98b_relation_c" type="relation" ref="" />
  2755. </stereotype-instances>
  2756. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  2757. <attribute-pairs>
  2758. <attribute-pair from-attribute="ae89f1fdaae12492fa306402501c3c612976" to-attribute="a74daa4a768ac415a847eca4c642554a1556" />
  2759. </attribute-pairs>
  2760. </erd-relation>
  2761. </item>
  2762. <item id="f26e0b8a31254bdcbd487daf3b8eabbe" cid="ENT009" type="erd-entity" name="Customer" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 04:33:13">
  2763. <stereotypes>
  2764. <stereotype name="table" />
  2765. </stereotypes>
  2766. <stereotype-instances>
  2767. <stereotype id="f26e0b8a31254bdcbd487daf3b8eabbe_table_c" type="table" ref="" />
  2768. </stereotype-instances>
  2769. <entity pk-constraint-name="PK_CUSTOMER_ID" description="" />
  2770. <attributes>
  2771. <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" />
  2772. <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" />
  2773. <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" />
  2774. <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" />
  2775. <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" />
  2776. <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" />
  2777. <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" />
  2778. <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" />
  2779. <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" />
  2780. <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" />
  2781. <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" />
  2782. </attributes>
  2783. <indexes>
  2784. <index uid="ixf46aa2e3dbf545b78fdcb3f618ee4c1557" cid="ERI007" name="IDX_CUSTOMER_CODE" is-unique="true">
  2785. <index-attributes>
  2786. <index-attribute ref="a7537f36bf7aa4826bfe26c963469c068563" sort="Asc" non-key="false" />
  2787. </index-attributes>
  2788. </index>
  2789. </indexes>
  2790. </item>
  2791. </abstract-items>
  2792. <layer id="bc0cf88f894f471e9735c36fae37d2f4" name="Default" visible="true" enabled="true" locked="false">
  2793. <item id="f26e0b8a31254bdcbd487daf3b8eabbe" iid="92beb9d8d43b41cfa0df0276c05b94c0" creation-date="11/06/2022 04:33:13" order-index="0" type="entity">
  2794. <layout ax="187" ay="272" awidth="329" aheight="303" x="187" y="272" width="329" height="303" rotation-center="-94.5,-71.5" />
  2795. <erd-entity show-nullability="true" />
  2796. </item>
  2797. <item id="6037f78c46de439abe802ae4987eae0a" iid="34eacc91783a4559ba5cb017cefd6a8b" creation-date="11/06/2022 04:33:28" order-index="1" type="entity">
  2798. <layout ax="820" ay="414" awidth="294" aheight="323" x="820" y="414" width="294" height="323" rotation-center="-77,-81.5" />
  2799. <erd-entity show-nullability="true" />
  2800. </item>
  2801. <item id="eabde8039f1144d4ac8b37265634e7c0" iid="381b944fe16d43139a6ec64b0dfc3845" creation-date="11/06/2022 04:47:49" order-index="3" type="entity">
  2802. <layout ax="618" ay="737" awidth="140" aheight="160" x="618" y="737" width="140" height="160" />
  2803. <erd-entity show-nullability="true" />
  2804. </item>
  2805. <item id="8b63817a9750491bb98314f94a40c98b" iid="c58a71edec7f46c9987a1933ec0bd54c" creation-date="11/06/2022 04:50:07" order-index="4" type="relation">
  2806. <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">
  2807. <points>
  2808. <point x="618" y="786" />
  2809. <point x="516" y="330" />
  2810. </points>
  2811. </layout>
  2812. <relation from="eabde8039f1144d4ac8b37265634e7c0" from-iid="381b944fe16d43139a6ec64b0dfc3845" from-field="ae89f1fdaae12492fa306402501c3c612976" to="f26e0b8a31254bdcbd487daf3b8eabbe" to-iid="92beb9d8d43b41cfa0df0276c05b94c0" to-field="a74daa4a768ac415a847eca4c642554a1556" />
  2813. </item>
  2814. <item id="edcd669d18f241ff8e95e71af2974e19" iid="3017b653184d4554ac5d6c4bec901cf8" creation-date="11/06/2022 05:02:37" order-index="7" type="relation">
  2815. <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">
  2816. <points>
  2817. <point x="820" y="510" />
  2818. <point x="516" y="330" />
  2819. </points>
  2820. </layout>
  2821. <relation from="6037f78c46de439abe802ae4987eae0a" from-iid="34eacc91783a4559ba5cb017cefd6a8b" from-field="a7d91a9dcefc7413693b670bc1bade5b0933" to="f26e0b8a31254bdcbd487daf3b8eabbe" to-iid="92beb9d8d43b41cfa0df0276c05b94c0" to-field="a74daa4a768ac415a847eca4c642554a1556" />
  2822. </item>
  2823. </layer>
  2824. </diagram>
  2825. </model>
  2826. <model id="p0a29b74ea64c48fa932311e21819b925_923014943" name="Notification" namespace="" order-index="4" expanded="true">
  2827. <meta>
  2828. <authors>
  2829. <author> </author>
  2830. </authors>
  2831. <description />
  2832. <creation-date>11/07/2022 05:45:25</creation-date>
  2833. <change-date>01/01/0001 00:00:00</change-date>
  2834. <revision-count>0</revision-count>
  2835. <version />
  2836. </meta>
  2837. <abstract-items />
  2838. <sub-models />
  2839. <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">
  2840. <style>
  2841. <background-color index="1" color="#FFFFFFFF" />
  2842. <background-color index="2" color="#FFFFFFFF" />
  2843. <background-type type="solid" />
  2844. </style>
  2845. <meta>
  2846. <authors>
  2847. <author />
  2848. </authors>
  2849. <description />
  2850. <creation-date>11/07/2022 05:46:28</creation-date>
  2851. <change-date>11/09/2022 16:50:32</change-date>
  2852. <revision-count>0</revision-count>
  2853. <version>1.0.0.1</version>
  2854. </meta>
  2855. <abstract-items>
  2856. <item id="diec4b218cb47746ceba64e207a912d06c1285" cid="ENT027" type="erd-entity" name="SentMessage" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:47:16">
  2857. <stereotypes>
  2858. <stereotype name="table" />
  2859. </stereotypes>
  2860. <stereotype-instances>
  2861. <stereotype id="diec4b218cb47746ceba64e207a912d06c1285_table_c" type="table" ref="" />
  2862. </stereotype-instances>
  2863. <entity pk-constraint-name="PK_PENDINGMESSAGE_ID" description="" />
  2864. <attributes>
  2865. <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" />
  2866. <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" />
  2867. <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" />
  2868. <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" />
  2869. <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" />
  2870. <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" />
  2871. <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" />
  2872. <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" />
  2873. <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" />
  2874. <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" />
  2875. <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" />
  2876. <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" />
  2877. <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" />
  2878. </attributes>
  2879. <indexes />
  2880. </item>
  2881. <item id="e3828a85b81e4dab9faf7fc35422c4f9" cid="ENT017" type="erd-entity" name="Template" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:48:48">
  2882. <stereotypes>
  2883. <stereotype name="table" />
  2884. </stereotypes>
  2885. <stereotype-instances>
  2886. <stereotype id="e3828a85b81e4dab9faf7fc35422c4f9_table_c" type="table" ref="" />
  2887. </stereotype-instances>
  2888. <entity description="" />
  2889. <attributes>
  2890. <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" />
  2891. <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" />
  2892. <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" />
  2893. <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" />
  2894. <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" />
  2895. <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" />
  2896. <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" />
  2897. <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" />
  2898. <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" />
  2899. </attributes>
  2900. <indexes />
  2901. </item>
  2902. <item id="4543725efd8340b38d428f58e0277be9" cid="ENT018" type="erd-entity" name="MessageData" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:49:05">
  2903. <stereotypes>
  2904. <stereotype name="table" />
  2905. </stereotypes>
  2906. <stereotype-instances>
  2907. <stereotype id="4543725efd8340b38d428f58e0277be9_table_c" type="table" ref="" />
  2908. </stereotype-instances>
  2909. <entity description="" />
  2910. <attributes>
  2911. <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" />
  2912. <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" />
  2913. <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" />
  2914. <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" />
  2915. <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" />
  2916. <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" />
  2917. <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" />
  2918. </attributes>
  2919. <indexes />
  2920. </item>
  2921. <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">
  2922. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  2923. <attribute-pairs>
  2924. <attribute-pair from-attribute="a64859b62e51d4a4c815c52b81bbfb980211" to-attribute="a70e0ddc6a10c48bc94ac632c58290f27285" />
  2925. </attribute-pairs>
  2926. </erd-relation>
  2927. </item>
  2928. <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">
  2929. <stereotypes>
  2930. <stereotype name="relation" />
  2931. </stereotypes>
  2932. <stereotype-instances>
  2933. <stereotype id="d4f6574c5e094b18a3468cb20d94cf63_relation_c" type="relation" ref="" />
  2934. </stereotype-instances>
  2935. <erd-relation type="Identifying" multiplicity-from="0..1" multiplicity-to="1">
  2936. <attribute-pairs>
  2937. <attribute-pair from-attribute="a4a7b28de2cf7466080e37a27ea669473260" to-attribute="a70e0ddc6a10c48bc94ac632c58290f27285" />
  2938. </attribute-pairs>
  2939. </erd-relation>
  2940. </item>
  2941. <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">
  2942. <stereotypes>
  2943. <stereotype name="relation" />
  2944. </stereotypes>
  2945. <stereotype-instances>
  2946. <stereotype id="524242499ba64b71bf6ad7a7997f2fbf_relation_c" type="relation" ref="" />
  2947. </stereotype-instances>
  2948. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  2949. <attribute-pairs>
  2950. <attribute-pair from-attribute="ad91f8f25c29a4c419325e2371407b77a211" to-attribute="a4b401b2d6fb249a68b6d657ea305cafe133" />
  2951. </attribute-pairs>
  2952. </erd-relation>
  2953. </item>
  2954. <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">
  2955. <stereotypes>
  2956. <stereotype name="relation" />
  2957. </stereotypes>
  2958. <stereotype-instances>
  2959. <stereotype id="03e217a092cc4bf5810435b06ab7788e_relation_c" type="relation" ref="" />
  2960. </stereotype-instances>
  2961. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  2962. <attribute-pairs>
  2963. <attribute-pair from-attribute="a64859b62e51d4a4c815c52b81bbfb980211" to-attribute="a70e0ddc6a10c48bc94ac632c58290f27285" />
  2964. </attribute-pairs>
  2965. </erd-relation>
  2966. </item>
  2967. <item id="di183a33fee764488f98900f17a89993883707" cid="ENT028" type="erd-entity" name="FailMessage" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:47:16">
  2968. <stereotypes>
  2969. <stereotype name="table" />
  2970. </stereotypes>
  2971. <stereotype-instances>
  2972. <stereotype id="5e7fe86b6ebe45cd8c74f976766c0f5b_table_c" type="table" ref="" />
  2973. </stereotype-instances>
  2974. <entity pk-constraint-name="PK_PENDINGMESSAGE_ID" description="" />
  2975. <attributes>
  2976. <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" />
  2977. <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" />
  2978. <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" />
  2979. <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" />
  2980. <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" />
  2981. <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" />
  2982. <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" />
  2983. <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" />
  2984. <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" />
  2985. <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" />
  2986. <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" />
  2987. <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" />
  2988. <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" />
  2989. <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" />
  2990. </attributes>
  2991. <indexes />
  2992. </item>
  2993. <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">
  2994. <stereotypes>
  2995. <stereotype name="relation" />
  2996. </stereotypes>
  2997. <stereotype-instances>
  2998. <stereotype id="326713af4d5e4ee781d1418d33f11f26_relation_c" type="relation" ref="" />
  2999. </stereotype-instances>
  3000. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3001. <attribute-pairs>
  3002. <attribute-pair from-attribute="ad91f8f25c29a4c419325e2371407b77a211" to-attribute="a4b401b2d6fb249a68b6d657ea305cafe133" />
  3003. </attribute-pairs>
  3004. </erd-relation>
  3005. </item>
  3006. <item id="c05781b8df36488a96d7bac1997b3bec" cid="ENT016" type="erd-entity" name="Recipient" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:48:37">
  3007. <stereotypes>
  3008. <stereotype name="table" />
  3009. </stereotypes>
  3010. <stereotype-instances>
  3011. <stereotype id="c05781b8df36488a96d7bac1997b3bec_table_c" type="table" ref="" />
  3012. </stereotype-instances>
  3013. <entity description="" />
  3014. <attributes>
  3015. <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" />
  3016. <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" />
  3017. <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" />
  3018. <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" />
  3019. <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" />
  3020. <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" />
  3021. </attributes>
  3022. <indexes />
  3023. </item>
  3024. <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">
  3025. <stereotypes>
  3026. <stereotype name="relation" />
  3027. </stereotypes>
  3028. <stereotype-instances>
  3029. <stereotype id="f605dccc5f36404cb1743956890011ec_relation_c" type="relation" ref="" />
  3030. </stereotype-instances>
  3031. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3032. <attribute-pairs>
  3033. <attribute-pair from-attribute="a4776f53499ec4245b23879f4afcb50e4211" to-attribute="ab319e15e96714219b67ec69abcc28699709" />
  3034. </attribute-pairs>
  3035. </erd-relation>
  3036. </item>
  3037. <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">
  3038. <stereotypes>
  3039. <stereotype name="relation" />
  3040. </stereotypes>
  3041. <stereotype-instances>
  3042. <stereotype id="8327054c53b940d8a552ba01b491269d_relation_c" type="relation" ref="" />
  3043. </stereotype-instances>
  3044. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3045. <attribute-pairs>
  3046. <attribute-pair from-attribute="a8682dcc09a7a4e5790b231d6238aa53e570" to-attribute="a5ada734fd06848df809dfb8f1ba55e45192" />
  3047. </attribute-pairs>
  3048. </erd-relation>
  3049. </item>
  3050. <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">
  3051. <stereotypes>
  3052. <stereotype name="relation" />
  3053. </stereotypes>
  3054. <stereotype-instances>
  3055. <stereotype id="532c64db0bf7449f96e4fe618aacf84d_relation_c" type="relation" ref="" />
  3056. </stereotype-instances>
  3057. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3058. <attribute-pairs>
  3059. <attribute-pair from-attribute="a8682dcc09a7a4e5790b231d6238aa53e570" to-attribute="a5ada734fd06848df809dfb8f1ba55e45192" />
  3060. </attribute-pairs>
  3061. </erd-relation>
  3062. </item>
  3063. <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">
  3064. <stereotypes>
  3065. <stereotype name="relation" />
  3066. </stereotypes>
  3067. <stereotype-instances>
  3068. <stereotype id="4420d4603b6843f6a428c91dbc417092_relation_c" type="relation" ref="" />
  3069. </stereotype-instances>
  3070. <erd-relation type="Identifying" multiplicity-from="0..1" multiplicity-to="1">
  3071. <attribute-pairs>
  3072. <attribute-pair from-attribute="a52fac41d983c4d9dbcc38971c6e896a038" to-attribute="a5ada734fd06848df809dfb8f1ba55e45192" />
  3073. </attribute-pairs>
  3074. </erd-relation>
  3075. </item>
  3076. <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">
  3077. <stereotypes>
  3078. <stereotype name="relation" />
  3079. </stereotypes>
  3080. <stereotype-instances>
  3081. <stereotype id="10422ec9174448e18e212feb3035374a_relation_c" type="relation" ref="" />
  3082. </stereotype-instances>
  3083. <erd-relation type="Identifying" multiplicity-from="0..1" multiplicity-to="1">
  3084. <attribute-pairs>
  3085. <attribute-pair from-attribute="aa1bd25134e4947e881d685b1a9b538b2308" to-attribute="ab319e15e96714219b67ec69abcc28699709" />
  3086. </attribute-pairs>
  3087. </erd-relation>
  3088. </item>
  3089. <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">
  3090. <stereotypes>
  3091. <stereotype name="relation" />
  3092. </stereotypes>
  3093. <stereotype-instances>
  3094. <stereotype id="b1f9234a88054ba4a48fc3a871dc02bc_relation_c" type="relation" ref="" />
  3095. </stereotype-instances>
  3096. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3097. <attribute-pairs>
  3098. <attribute-pair from-attribute="a64859b62e51d4a4c815c52b81bbfb980211" to-attribute="a70e0ddc6a10c48bc94ac632c58290f27285" />
  3099. </attribute-pairs>
  3100. </erd-relation>
  3101. </item>
  3102. <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">
  3103. <stereotypes>
  3104. <stereotype name="relation" />
  3105. </stereotypes>
  3106. <stereotype-instances>
  3107. <stereotype id="b89c0c4f0336459d876bf4ace3a630cb_relation_c" type="relation" ref="" />
  3108. </stereotype-instances>
  3109. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3110. <attribute-pairs>
  3111. <attribute-pair from-attribute="ad91f8f25c29a4c419325e2371407b77a211" to-attribute="a4b401b2d6fb249a68b6d657ea305cafe133" />
  3112. </attribute-pairs>
  3113. </erd-relation>
  3114. </item>
  3115. <item id="0072a4a831c1432ea145f94c46dc3fc1" cid="ENT019" type="erd-entity" name="MessageAttachment" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:49:25">
  3116. <stereotypes>
  3117. <stereotype name="table" />
  3118. </stereotypes>
  3119. <stereotype-instances>
  3120. <stereotype id="0072a4a831c1432ea145f94c46dc3fc1_table_c" type="table" ref="" />
  3121. </stereotype-instances>
  3122. <entity description="" />
  3123. <attributes>
  3124. <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" />
  3125. <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" />
  3126. <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" />
  3127. <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" />
  3128. <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" />
  3129. <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" />
  3130. <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" />
  3131. <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" />
  3132. </attributes>
  3133. <indexes />
  3134. </item>
  3135. <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">
  3136. <stereotypes>
  3137. <stereotype name="relation" />
  3138. </stereotypes>
  3139. <stereotype-instances>
  3140. <stereotype id="1d8fc1524cbc4062990a125ee00dceae_relation_c" type="relation" ref="" />
  3141. </stereotype-instances>
  3142. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3143. <attribute-pairs>
  3144. <attribute-pair from-attribute="a4776f53499ec4245b23879f4afcb50e4211" to-attribute="ab319e15e96714219b67ec69abcc28699709" />
  3145. </attribute-pairs>
  3146. </erd-relation>
  3147. </item>
  3148. <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">
  3149. <stereotypes>
  3150. <stereotype name="relation" />
  3151. </stereotypes>
  3152. <stereotype-instances>
  3153. <stereotype id="6a2e5cc6de7c4d0384efda392236b8e2_relation_c" type="relation" ref="" />
  3154. </stereotype-instances>
  3155. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3156. <attribute-pairs>
  3157. <attribute-pair from-attribute="a8682dcc09a7a4e5790b231d6238aa53e570" to-attribute="a5ada734fd06848df809dfb8f1ba55e45192" />
  3158. </attribute-pairs>
  3159. </erd-relation>
  3160. </item>
  3161. <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">
  3162. <stereotypes>
  3163. <stereotype name="relation" />
  3164. </stereotypes>
  3165. <stereotype-instances>
  3166. <stereotype id="8f9c7abb18b949ff9b3f13aa8b75b5ce_relation_c" type="relation" ref="" />
  3167. </stereotype-instances>
  3168. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3169. <attribute-pairs>
  3170. <attribute-pair from-attribute="a4776f53499ec4245b23879f4afcb50e4211" to-attribute="ab319e15e96714219b67ec69abcc28699709" />
  3171. </attribute-pairs>
  3172. </erd-relation>
  3173. </item>
  3174. <item id="5e7fe86b6ebe45cd8c74f976766c0f5b" cid="ENT013" type="erd-entity" name="PendingMessage" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/07/2022 05:47:16">
  3175. <stereotypes>
  3176. <stereotype name="table" />
  3177. </stereotypes>
  3178. <stereotype-instances>
  3179. <stereotype id="5e7fe86b6ebe45cd8c74f976766c0f5b_table_c" type="table" ref="" />
  3180. </stereotype-instances>
  3181. <entity pk-constraint-name="PK_PENDINGMESSAGE_ID" description="" />
  3182. <attributes>
  3183. <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" />
  3184. <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" />
  3185. <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" />
  3186. <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" />
  3187. <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" />
  3188. <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" />
  3189. <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" />
  3190. <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" />
  3191. <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" />
  3192. <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" />
  3193. <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" />
  3194. <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" />
  3195. <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" />
  3196. <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" />
  3197. </attributes>
  3198. <indexes />
  3199. </item>
  3200. </abstract-items>
  3201. <layer id="83a4e4aefb704bb48f6dab87118e71d8" name="Default" visible="true" enabled="true" locked="false">
  3202. <item id="5e7fe86b6ebe45cd8c74f976766c0f5b" iid="c6d0f021d805452b9e88072b060d461d" creation-date="11/07/2022 05:47:16" order-index="1" type="entity">
  3203. <layout ax="31" ay="178" awidth="326" aheight="347" x="31" y="178" width="312" height="347" rotation-center="86,-45.5" />
  3204. <erd-entity show-nullability="true" />
  3205. </item>
  3206. <item id="c05781b8df36488a96d7bac1997b3bec" iid="793bcf0dcd18437b8816c922ce31a7bc" creation-date="11/07/2022 05:48:37" order-index="4" type="entity">
  3207. <layout ax="78.5" ay="1106" awidth="217" aheight="244" x="78.5" y="1106" width="217" height="244" rotation-center="12.5,42" />
  3208. <erd-entity show-nullability="true" />
  3209. </item>
  3210. <item id="e3828a85b81e4dab9faf7fc35422c4f9" iid="817246872e78479abf6fe1a2d7daff95" creation-date="11/07/2022 05:48:48" order-index="5" type="entity">
  3211. <layout ax="509" ay="1116" awidth="181" aheight="244" x="509" y="1116" width="181" height="244" rotation-center="-20.5,42" />
  3212. <erd-entity show-nullability="true" />
  3213. </item>
  3214. <item id="4543725efd8340b38d428f58e0277be9" iid="1e8f33ade0754508adf0f9a30f2064bc" creation-date="11/07/2022 05:49:05" order-index="6" type="entity">
  3215. <layout ax="1037" ay="1106" awidth="217" aheight="244" x="1037" y="1106" width="217" height="244" rotation-center="-38.5,42" />
  3216. <erd-entity show-nullability="true" />
  3217. </item>
  3218. <item id="0072a4a831c1432ea145f94c46dc3fc1" iid="41c88192251a43489cd946119fdaae38" creation-date="11/07/2022 05:49:25" order-index="7" type="entity">
  3219. <layout ax="1450" ay="1116" awidth="256" aheight="271" x="1450" y="1116" width="256" height="271" rotation-center="-24,55.5" />
  3220. <erd-entity show-nullability="true" />
  3221. </item>
  3222. <item id="4420d4603b6843f6a428c91dbc417092" iid="9d9a3f4580e445e9a0c28d5d5ee8e3ae" creation-date="11/07/2022 05:59:50" order-index="8" type="relation">
  3223. <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">
  3224. <points>
  3225. <point x="78" y="1220" />
  3226. <point x="28.5" y="1255" />
  3227. <point x="28.5" y="1173" />
  3228. <point x="78" y="1164" />
  3229. </points>
  3230. </layout>
  3231. <relation from="c05781b8df36488a96d7bac1997b3bec" from-iid="793bcf0dcd18437b8816c922ce31a7bc" from-field="a52fac41d983c4d9dbcc38971c6e896a038" to="c05781b8df36488a96d7bac1997b3bec" to-iid="793bcf0dcd18437b8816c922ce31a7bc" to-field="a5ada734fd06848df809dfb8f1ba55e45192" />
  3232. </item>
  3233. <item id="10422ec9174448e18e212feb3035374a" iid="2ebaad67484e494899202e6f233a4a48" creation-date="11/07/2022 06:00:48" order-index="9" type="relation">
  3234. <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">
  3235. <points>
  3236. <point x="1037" y="1220" />
  3237. <point x="982" y="1264" />
  3238. <point x="982" y="1173" />
  3239. <point x="1037" y="1164" />
  3240. </points>
  3241. </layout>
  3242. <relation from="4543725efd8340b38d428f58e0277be9" from-iid="1e8f33ade0754508adf0f9a30f2064bc" from-field="aa1bd25134e4947e881d685b1a9b538b2308" to="4543725efd8340b38d428f58e0277be9" to-iid="1e8f33ade0754508adf0f9a30f2064bc" to-field="ab319e15e96714219b67ec69abcc28699709" />
  3243. </item>
  3244. <item id="d4f6574c5e094b18a3468cb20d94cf63" iid="82ea9d2b47b74d4292f942e7a09a133e" creation-date="11/07/2022 06:01:33" order-index="10" type="relation">
  3245. <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">
  3246. <points>
  3247. <point x="1450" y="1212" />
  3248. <point x="1400" y="1257" />
  3249. <point x="1400" y="1183" />
  3250. <point x="1450" y="1174" />
  3251. </points>
  3252. </layout>
  3253. <relation from="0072a4a831c1432ea145f94c46dc3fc1" from-iid="41c88192251a43489cd946119fdaae38" from-field="a4a7b28de2cf7466080e37a27ea669473260" to="0072a4a831c1432ea145f94c46dc3fc1" to-iid="41c88192251a43489cd946119fdaae38" to-field="a70e0ddc6a10c48bc94ac632c58290f27285" />
  3254. </item>
  3255. <item id="6a2e5cc6de7c4d0384efda392236b8e2" iid="267bfd3d4090490b8392ca7fa55373bb" creation-date="11/07/2022 08:16:07" order-index="11" type="relation">
  3256. <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">
  3257. <points>
  3258. <point x="357" y="350" />
  3259. <point x="78" y="1164" />
  3260. </points>
  3261. </layout>
  3262. <relation from="5e7fe86b6ebe45cd8c74f976766c0f5b" from-iid="c6d0f021d805452b9e88072b060d461d" from-field="a8682dcc09a7a4e5790b231d6238aa53e570" to="c05781b8df36488a96d7bac1997b3bec" to-iid="793bcf0dcd18437b8816c922ce31a7bc" to-field="a5ada734fd06848df809dfb8f1ba55e45192" />
  3263. </item>
  3264. <item id="326713af4d5e4ee781d1418d33f11f26" iid="c09534e3a7a140f4908432c31e36fc30" creation-date="11/07/2022 08:16:47" order-index="12" type="relation">
  3265. <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">
  3266. <points>
  3267. <point x="357" y="370" />
  3268. <point x="509" y="1183" />
  3269. </points>
  3270. </layout>
  3271. <relation from="5e7fe86b6ebe45cd8c74f976766c0f5b" from-iid="c6d0f021d805452b9e88072b060d461d" from-field="ad91f8f25c29a4c419325e2371407b77a211" to="e3828a85b81e4dab9faf7fc35422c4f9" to-iid="817246872e78479abf6fe1a2d7daff95" to-field="a4b401b2d6fb249a68b6d657ea305cafe133" />
  3272. </item>
  3273. <item id="1d8fc1524cbc4062990a125ee00dceae" iid="b87b38d94b9c43d6b4747b569488309c" creation-date="11/07/2022 08:17:36" order-index="13" type="relation">
  3274. <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">
  3275. <points>
  3276. <point x="357" y="388" />
  3277. <point x="1037" y="1164" />
  3278. </points>
  3279. </layout>
  3280. <relation from="5e7fe86b6ebe45cd8c74f976766c0f5b" from-iid="c6d0f021d805452b9e88072b060d461d" from-field="a4776f53499ec4245b23879f4afcb50e4211" to="4543725efd8340b38d428f58e0277be9" to-iid="1e8f33ade0754508adf0f9a30f2064bc" to-field="ab319e15e96714219b67ec69abcc28699709" />
  3281. </item>
  3282. <item id="b831317571014df9bb68c68ef4fd6bed" iid="d278b55538db44d7b3c9ef3563873794" creation-date="11/07/2022 08:18:13" order-index="14" type="relation">
  3283. <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">
  3284. <points>
  3285. <point x="357" y="408" />
  3286. <point x="1450" y="1174" />
  3287. </points>
  3288. </layout>
  3289. <relation from="5e7fe86b6ebe45cd8c74f976766c0f5b" from-iid="c6d0f021d805452b9e88072b060d461d" from-field="a64859b62e51d4a4c815c52b81bbfb980211" to="0072a4a831c1432ea145f94c46dc3fc1" to-iid="41c88192251a43489cd946119fdaae38" to-field="a70e0ddc6a10c48bc94ac632c58290f27285" />
  3290. </item>
  3291. <item id="diec4b218cb47746ceba64e207a912d06c1285" iid="1dc74261438545dcb977d33d99f61d49" creation-date="11/07/2022 05:47:16" order-index="1" type="entity">
  3292. <layout ax="664" ay="178" awidth="326" aheight="347" x="664" y="178" width="312" height="347" rotation-center="86,-45.5" />
  3293. <erd-entity show-nullability="true" />
  3294. </item>
  3295. <item id="di183a33fee764488f98900f17a89993883707" iid="6c8e600a418f4fce857824a2e34a49e2" creation-date="11/07/2022 05:47:16" order-index="1" type="entity">
  3296. <layout ax="1192" ay="178" awidth="326" aheight="347" x="1192" y="178" width="312" height="347" rotation-center="86,-45.5" />
  3297. <erd-entity show-nullability="true" />
  3298. </item>
  3299. <item id="532c64db0bf7449f96e4fe618aacf84d" iid="95b3c2b7d0084a2e8171712ea713bfba" creation-date="11/09/2022 16:46:22" order-index="15" type="relation">
  3300. <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">
  3301. <points>
  3302. <point x="664" y="351" />
  3303. <point x="296" y="1164" />
  3304. </points>
  3305. </layout>
  3306. <relation from="diec4b218cb47746ceba64e207a912d06c1285" from-iid="1dc74261438545dcb977d33d99f61d49" from-field="a8682dcc09a7a4e5790b231d6238aa53e570" to="c05781b8df36488a96d7bac1997b3bec" to-iid="793bcf0dcd18437b8816c922ce31a7bc" to-field="a5ada734fd06848df809dfb8f1ba55e45192" />
  3307. </item>
  3308. <item id="b89c0c4f0336459d876bf4ace3a630cb" iid="f210f7a0dd1a4258baa6db8deb532506" creation-date="11/09/2022 16:46:45" order-index="16" type="relation">
  3309. <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">
  3310. <points>
  3311. <point x="664" y="370" />
  3312. <point x="690" y="1183" />
  3313. </points>
  3314. </layout>
  3315. <relation from="diec4b218cb47746ceba64e207a912d06c1285" from-iid="1dc74261438545dcb977d33d99f61d49" from-field="ad91f8f25c29a4c419325e2371407b77a211" to="e3828a85b81e4dab9faf7fc35422c4f9" to-iid="817246872e78479abf6fe1a2d7daff95" to-field="a4b401b2d6fb249a68b6d657ea305cafe133" />
  3316. </item>
  3317. <item id="8f9c7abb18b949ff9b3f13aa8b75b5ce" iid="ab24d0749dd8484a911134b36f0f0da6" creation-date="11/09/2022 16:47:04" order-index="17" type="relation">
  3318. <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">
  3319. <points>
  3320. <point x="990" y="388" />
  3321. <point x="1037" y="1164" />
  3322. </points>
  3323. </layout>
  3324. <relation from="diec4b218cb47746ceba64e207a912d06c1285" from-iid="1dc74261438545dcb977d33d99f61d49" from-field="a4776f53499ec4245b23879f4afcb50e4211" to="4543725efd8340b38d428f58e0277be9" to-iid="1e8f33ade0754508adf0f9a30f2064bc" to-field="ab319e15e96714219b67ec69abcc28699709" />
  3325. </item>
  3326. <item id="b1f9234a88054ba4a48fc3a871dc02bc" iid="e95af2a355024c2497362a15f495304c" creation-date="11/09/2022 16:47:26" order-index="18" type="relation">
  3327. <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">
  3328. <points>
  3329. <point x="990" y="408" />
  3330. <point x="1450" y="1174" />
  3331. </points>
  3332. </layout>
  3333. <relation from="diec4b218cb47746ceba64e207a912d06c1285" from-iid="1dc74261438545dcb977d33d99f61d49" from-field="a64859b62e51d4a4c815c52b81bbfb980211" to="0072a4a831c1432ea145f94c46dc3fc1" to-iid="41c88192251a43489cd946119fdaae38" to-field="a70e0ddc6a10c48bc94ac632c58290f27285" />
  3334. </item>
  3335. <item id="8327054c53b940d8a552ba01b491269d" iid="b827f5418a4d4259b7bae44204654b99" creation-date="11/09/2022 16:49:29" order-index="19" type="relation">
  3336. <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">
  3337. <points>
  3338. <point x="1192" y="351" />
  3339. <point x="296" y="1164" />
  3340. </points>
  3341. </layout>
  3342. <relation from="di183a33fee764488f98900f17a89993883707" from-iid="6c8e600a418f4fce857824a2e34a49e2" from-field="a8682dcc09a7a4e5790b231d6238aa53e570" to="c05781b8df36488a96d7bac1997b3bec" to-iid="793bcf0dcd18437b8816c922ce31a7bc" to-field="a5ada734fd06848df809dfb8f1ba55e45192" />
  3343. </item>
  3344. <item id="524242499ba64b71bf6ad7a7997f2fbf" iid="8fbe2b3b3b644a62a887580f8186bfda" creation-date="11/09/2022 16:49:50" order-index="20" type="relation">
  3345. <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">
  3346. <points>
  3347. <point x="1192" y="370" />
  3348. <point x="690" y="1183" />
  3349. </points>
  3350. </layout>
  3351. <relation from="di183a33fee764488f98900f17a89993883707" from-iid="6c8e600a418f4fce857824a2e34a49e2" from-field="ad91f8f25c29a4c419325e2371407b77a211" to="e3828a85b81e4dab9faf7fc35422c4f9" to-iid="817246872e78479abf6fe1a2d7daff95" to-field="a4b401b2d6fb249a68b6d657ea305cafe133" />
  3352. </item>
  3353. <item id="f605dccc5f36404cb1743956890011ec" iid="5f42c240a5994e48a11b5d05dd58de15" creation-date="11/09/2022 16:50:06" order-index="21" type="relation">
  3354. <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">
  3355. <points>
  3356. <point x="1192" y="388" />
  3357. <point x="1254" y="1164" />
  3358. </points>
  3359. </layout>
  3360. <relation from="di183a33fee764488f98900f17a89993883707" from-iid="6c8e600a418f4fce857824a2e34a49e2" from-field="a4776f53499ec4245b23879f4afcb50e4211" to="4543725efd8340b38d428f58e0277be9" to-iid="1e8f33ade0754508adf0f9a30f2064bc" to-field="ab319e15e96714219b67ec69abcc28699709" />
  3361. </item>
  3362. <item id="03e217a092cc4bf5810435b06ab7788e" iid="6f2ed02c05c7419988a178f129254702" creation-date="11/09/2022 16:50:32" order-index="22" type="relation">
  3363. <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">
  3364. <points>
  3365. <point x="1518" y="408" />
  3366. <point x="1450" y="1174" />
  3367. </points>
  3368. </layout>
  3369. <relation from="di183a33fee764488f98900f17a89993883707" from-iid="6c8e600a418f4fce857824a2e34a49e2" from-field="a64859b62e51d4a4c815c52b81bbfb980211" to="0072a4a831c1432ea145f94c46dc3fc1" to-iid="41c88192251a43489cd946119fdaae38" to-field="a70e0ddc6a10c48bc94ac632c58290f27285" />
  3370. </item>
  3371. </layer>
  3372. </diagram>
  3373. </model>
  3374. <model id="p280b11935de843e8bd191248b1de1b75_596921977" name="Processor" namespace="" order-index="5" expanded="true">
  3375. <meta>
  3376. <authors>
  3377. <author>Dalibor Votruba</author>
  3378. </authors>
  3379. <description />
  3380. <creation-date>11/08/2022 05:19:56</creation-date>
  3381. <change-date>01/01/0001 00:00:00</change-date>
  3382. <revision-count>0</revision-count>
  3383. <version />
  3384. </meta>
  3385. <abstract-items />
  3386. <sub-models />
  3387. <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">
  3388. <style>
  3389. <background-color index="1" color="#FFFFFFFF" />
  3390. <background-color index="2" color="#FFFFFFFF" />
  3391. <background-type type="solid" />
  3392. </style>
  3393. <meta>
  3394. <authors>
  3395. <author>Dalibor Votruba</author>
  3396. </authors>
  3397. <description />
  3398. <creation-date>11/08/2022 05:20:32</creation-date>
  3399. <change-date>11/08/2022 08:47:08</change-date>
  3400. <revision-count>0</revision-count>
  3401. <version>1.0.0.1</version>
  3402. </meta>
  3403. <abstract-items>
  3404. <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">
  3405. <stereotypes>
  3406. <stereotype name="relation" />
  3407. </stereotypes>
  3408. <stereotype-instances>
  3409. <stereotype id="baadf4cdcea24736829d90875a341465_relation_c" type="relation" ref="" />
  3410. </stereotype-instances>
  3411. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3412. <attribute-pairs>
  3413. <attribute-pair from-attribute="a82555026870245e8aa971296f36acf7c481" to-attribute="ac5647322066d4c8183f23cc7e844cf74395" />
  3414. </attribute-pairs>
  3415. </erd-relation>
  3416. </item>
  3417. <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">
  3418. <stereotypes>
  3419. <stereotype name="relation" />
  3420. </stereotypes>
  3421. <stereotype-instances>
  3422. <stereotype id="6ef6b476716746e4aa738860504611bb_relation_c" type="relation" ref="" />
  3423. </stereotype-instances>
  3424. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3425. <attribute-pairs>
  3426. <attribute-pair from-attribute="ae810a56316134b858bb280ef494ca8d6481" to-attribute="a92ed274860e44bc5befe31a3ea2aed7b908" />
  3427. </attribute-pairs>
  3428. </erd-relation>
  3429. </item>
  3430. <item id="d3d616beebc24f36b6938945ae4354c4" cid="ENT022" type="erd-entity" name="QueueDone" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:22:32">
  3431. <stereotypes>
  3432. <stereotype name="table" />
  3433. </stereotypes>
  3434. <stereotype-instances>
  3435. <stereotype id="d3d616beebc24f36b6938945ae4354c4_table_c" type="table" ref="" />
  3436. </stereotype-instances>
  3437. <entity pk-constraint-name="ID_QUEUEDONE_ID" description="" />
  3438. <attributes>
  3439. <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" />
  3440. <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" />
  3441. <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" />
  3442. <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" />
  3443. <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" />
  3444. <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" />
  3445. <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" />
  3446. <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" />
  3447. <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" />
  3448. <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" />
  3449. <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" />
  3450. <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" />
  3451. <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" />
  3452. <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" />
  3453. <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" />
  3454. <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" />
  3455. </attributes>
  3456. <indexes />
  3457. </item>
  3458. <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">
  3459. <stereotypes>
  3460. <stereotype name="relation" />
  3461. </stereotypes>
  3462. <stereotype-instances>
  3463. <stereotype id="f3b285db7dad4fbd9515f21df0e12282_relation_c" type="relation" ref="" />
  3464. </stereotype-instances>
  3465. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3466. <attribute-pairs>
  3467. <attribute-pair from-attribute="a3ed1729f040d4f6292c662be0265480c38" to-attribute="ac5647322066d4c8183f23cc7e844cf74395" />
  3468. </attribute-pairs>
  3469. </erd-relation>
  3470. </item>
  3471. <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">
  3472. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3473. <attribute-pairs>
  3474. <attribute-pair from-attribute="a2077f43978cb42c39a412aa2b831da2b399" to-attribute="ac5647322066d4c8183f23cc7e844cf74395" />
  3475. </attribute-pairs>
  3476. </erd-relation>
  3477. </item>
  3478. <item id="457b363c986e438795a41f1d41a698f1" cid="ENT023" type="erd-entity" name="QueueFailed" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:22:59">
  3479. <entity pk-constraint-name="ID_QUEUEFAILED_ID" description="" />
  3480. <attributes>
  3481. <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" />
  3482. <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" />
  3483. <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" />
  3484. <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" />
  3485. <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" />
  3486. <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" />
  3487. <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" />
  3488. <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" />
  3489. <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" />
  3490. <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" />
  3491. <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" />
  3492. <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" />
  3493. <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" />
  3494. <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" />
  3495. <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" />
  3496. <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" />
  3497. </attributes>
  3498. <indexes />
  3499. </item>
  3500. <item id="df4ed254302249d69a4c0ed1131d09cc" cid="ENT021" type="erd-entity" name="QueueProcessing" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:22:17">
  3501. <stereotypes>
  3502. <stereotype name="table" />
  3503. </stereotypes>
  3504. <stereotype-instances>
  3505. <stereotype id="df4ed254302249d69a4c0ed1131d09cc_table_c" type="table" ref="" />
  3506. </stereotype-instances>
  3507. <entity pk-constraint-name="ID_QUEUEPROCESSING_ID" description="" />
  3508. <attributes>
  3509. <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" />
  3510. <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" />
  3511. <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" />
  3512. <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" />
  3513. <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" />
  3514. <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" />
  3515. <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" />
  3516. <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" />
  3517. <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" />
  3518. <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" />
  3519. <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" />
  3520. <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" />
  3521. <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" />
  3522. <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" />
  3523. <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" />
  3524. <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" />
  3525. </attributes>
  3526. <indexes />
  3527. </item>
  3528. <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">
  3529. <stereotypes>
  3530. <stereotype name="relation" />
  3531. </stereotypes>
  3532. <stereotype-instances>
  3533. <stereotype id="9a7395ec0c17456db7ef4b014d6926d5_relation_c" type="relation" ref="" />
  3534. </stereotype-instances>
  3535. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3536. <attribute-pairs>
  3537. <attribute-pair from-attribute="ab0ed4682a90049478990dc6e20df5d11766" to-attribute="ac5647322066d4c8183f23cc7e844cf74395" />
  3538. </attribute-pairs>
  3539. </erd-relation>
  3540. </item>
  3541. <item id="1186fa6c2b034ce885edbb8091b46505" cid="ENT020" type="erd-entity" name="QueuePending" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:21:17">
  3542. <stereotypes>
  3543. <stereotype name="table" />
  3544. </stereotypes>
  3545. <stereotype-instances>
  3546. <stereotype id="1186fa6c2b034ce885edbb8091b46505_table_c" type="table" ref="" />
  3547. </stereotype-instances>
  3548. <entity pk-constraint-name="ID_QUEUEPENDING_ID" description="" />
  3549. <attributes>
  3550. <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" />
  3551. <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" />
  3552. <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" />
  3553. <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" />
  3554. <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" />
  3555. <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" />
  3556. <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" />
  3557. <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" />
  3558. <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" />
  3559. <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" />
  3560. <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" />
  3561. <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" />
  3562. <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" />
  3563. </attributes>
  3564. <indexes />
  3565. </item>
  3566. <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">
  3567. <stereotypes>
  3568. <stereotype name="relation" />
  3569. </stereotypes>
  3570. <stereotype-instances>
  3571. <stereotype id="d073cec886784d5f925a27029b6df6c8_relation_c" type="relation" ref="" />
  3572. </stereotype-instances>
  3573. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3574. <attribute-pairs>
  3575. <attribute-pair from-attribute="a7be97a141faa470a9dda9f7de8720f4d62" to-attribute="a92ed274860e44bc5befe31a3ea2aed7b908" />
  3576. </attribute-pairs>
  3577. </erd-relation>
  3578. </item>
  3579. <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">
  3580. <stereotypes>
  3581. <stereotype name="relation" />
  3582. </stereotypes>
  3583. <stereotype-instances>
  3584. <stereotype id="24978a7816954c8b9b404b7f4eb78dd4_relation_c" type="relation" ref="" />
  3585. </stereotype-instances>
  3586. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3587. <attribute-pairs>
  3588. <attribute-pair from-attribute="af516ce71d9c745e59606792d0ce364ff38" to-attribute="a92ed274860e44bc5befe31a3ea2aed7b908" />
  3589. </attribute-pairs>
  3590. </erd-relation>
  3591. </item>
  3592. <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">
  3593. <stereotypes>
  3594. <stereotype name="relation" />
  3595. </stereotypes>
  3596. <stereotype-instances>
  3597. <stereotype id="87d93db58f7944799690a82b5062972d_relation_c" type="relation" ref="" />
  3598. </stereotype-instances>
  3599. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3600. <attribute-pairs>
  3601. <attribute-pair from-attribute="a7a00dd817c9c4cdcb7bdfefb05443cf562" to-attribute="ac5647322066d4c8183f23cc7e844cf74395" />
  3602. </attribute-pairs>
  3603. </erd-relation>
  3604. </item>
  3605. <item id="b765908bd63249ed98fd4b67aaffb808" cid="ENT024" type="erd-entity" name="StatusHistory" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:24:36">
  3606. <stereotypes>
  3607. <stereotype name="table" />
  3608. </stereotypes>
  3609. <stereotype-instances>
  3610. <stereotype id="b765908bd63249ed98fd4b67aaffb808_table_c" type="table" ref="" />
  3611. </stereotype-instances>
  3612. <entity pk-constraint-name="IDX_STATUSHISTORY_ID" description="" />
  3613. <attributes>
  3614. <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" />
  3615. <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" />
  3616. <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" />
  3617. <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" />
  3618. <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" />
  3619. <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" />
  3620. </attributes>
  3621. <indexes />
  3622. </item>
  3623. <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">
  3624. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3625. <attribute-pairs>
  3626. <attribute-pair from-attribute="a7611878f0ff4494387434f3e311e1ed2468" to-attribute="a92ed274860e44bc5befe31a3ea2aed7b908" />
  3627. </attribute-pairs>
  3628. </erd-relation>
  3629. </item>
  3630. <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">
  3631. <stereotypes>
  3632. <stereotype name="relation" />
  3633. </stereotypes>
  3634. <stereotype-instances>
  3635. <stereotype id="c74988046a6746bfba1cf5db75e432b8_relation_c" type="relation" ref="" />
  3636. </stereotype-instances>
  3637. <erd-relation type="Identifying" multiplicity-from="1" multiplicity-to="1">
  3638. <attribute-pairs>
  3639. <attribute-pair from-attribute="aedffb28a70b54824af70db83e90864fe766" to-attribute="a92ed274860e44bc5befe31a3ea2aed7b908" />
  3640. </attribute-pairs>
  3641. </erd-relation>
  3642. </item>
  3643. <item id="bfe30d52b9874c9e889784357be31a14" cid="ENT025" type="erd-entity" name="QueueData" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:25:00">
  3644. <stereotypes>
  3645. <stereotype name="table" />
  3646. </stereotypes>
  3647. <stereotype-instances>
  3648. <stereotype id="bfe30d52b9874c9e889784357be31a14_table_c" type="table" ref="" />
  3649. </stereotype-instances>
  3650. <entity pk-constraint-name="IDX_DATA_ID" description="" />
  3651. <attributes>
  3652. <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" />
  3653. <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" />
  3654. <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" />
  3655. <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" />
  3656. <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" />
  3657. <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" />
  3658. <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" />
  3659. </attributes>
  3660. <indexes />
  3661. </item>
  3662. </abstract-items>
  3663. <layer id="b33e4b4a89eb408db71b5b6ad0afa419" name="Default" visible="true" enabled="true" locked="false">
  3664. <item id="1186fa6c2b034ce885edbb8091b46505" iid="3045330c452647eb96ae41e241799231" creation-date="11/08/2022 05:21:17" order-index="0" type="entity">
  3665. <layout ax="72" ay="131" awidth="326" aheight="295" x="72" y="131" width="282" height="283" rotation-center="71,61.5" />
  3666. <erd-entity show-nullability="true" />
  3667. </item>
  3668. <item id="df4ed254302249d69a4c0ed1131d09cc" iid="418d0aa581c545cd81f9f0fe79d1e4fb" creation-date="11/08/2022 05:22:17" order-index="1" type="entity">
  3669. <layout ax="410" ay="131" awidth="326" aheight="406" x="410" y="131" width="140" height="406" rotation-center="0,15.5" />
  3670. <erd-entity show-nullability="true" />
  3671. </item>
  3672. <item id="d3d616beebc24f36b6938945ae4354c4" iid="102df699a8284fc68f3e4e8953a82bd0" creation-date="11/08/2022 05:22:32" order-index="2" type="entity">
  3673. <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" />
  3674. <erd-entity show-nullability="true" />
  3675. </item>
  3676. <item id="457b363c986e438795a41f1d41a698f1" iid="a5c5e513910642c5b0efb24fd9fc2b38" creation-date="11/08/2022 05:22:59" order-index="3" type="entity">
  3677. <layout ax="1126" ay="549" awidth="326" aheight="333" x="1126" y="549" width="314" height="327" rotation-center="-82,-83.5" />
  3678. <erd-entity show-nullability="true" />
  3679. </item>
  3680. <item id="b765908bd63249ed98fd4b67aaffb808" iid="5b1c442bf5e94c6087e35b73f4616120" creation-date="11/08/2022 05:24:36" order-index="4" type="entity">
  3681. <layout ax="147" ay="642" awidth="263" aheight="209" x="147" y="642" width="263" height="209" rotation-center="5.5,-23.5" />
  3682. <erd-entity show-nullability="true" />
  3683. </item>
  3684. <item id="bfe30d52b9874c9e889784357be31a14" iid="f6b988b16681472aabb064336c52e34a" creation-date="11/08/2022 05:25:00" order-index="5" type="entity">
  3685. <layout ax="856" ay="290" awidth="467" aheight="209" x="856" y="290" width="467" height="209" rotation-center="-163.5,24.5" />
  3686. <erd-entity show-nullability="true" />
  3687. </item>
  3688. <item id="5f5e1e7c91664cfab0dd92bc4fac353b" iid="58907e40cccd4fde943044c76d36bef2" creation-date="11/08/2022 05:31:17" order-index="6" type="relation">
  3689. <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">
  3690. <points>
  3691. <point x="856" y="368" />
  3692. <point x="806" y="394" />
  3693. <point x="806" y="357" />
  3694. <point x="856" y="348" />
  3695. </points>
  3696. </layout>
  3697. <relation from="bfe30d52b9874c9e889784357be31a14" from-iid="f6b988b16681472aabb064336c52e34a" from-field="a7611878f0ff4494387434f3e311e1ed2468" to="bfe30d52b9874c9e889784357be31a14" to-iid="f6b988b16681472aabb064336c52e34a" to-field="a92ed274860e44bc5befe31a3ea2aed7b908" />
  3698. </item>
  3699. <item id="ce304959c0f14de896f808363c2b20f0" iid="cd89ad803f0c4592a759f2a21cb171ba" creation-date="11/08/2022 05:33:22" order-index="7" type="relation">
  3700. <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">
  3701. <points>
  3702. <point x="147" y="720" />
  3703. <point x="97" y="720" />
  3704. <point x="97" y="700" />
  3705. <point x="147" y="700" />
  3706. </points>
  3707. </layout>
  3708. <relation from="b765908bd63249ed98fd4b67aaffb808" from-iid="5b1c442bf5e94c6087e35b73f4616120" from-field="a2077f43978cb42c39a412aa2b831da2b399" to="b765908bd63249ed98fd4b67aaffb808" to-iid="5b1c442bf5e94c6087e35b73f4616120" to-field="ac5647322066d4c8183f23cc7e844cf74395" />
  3709. </item>
  3710. <item id="6ef6b476716746e4aa738860504611bb" iid="ee0b08d96e10443b8f1c2c2ca02d51d9" creation-date="11/08/2022 08:36:11" order-index="8" type="relation">
  3711. <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">
  3712. <points>
  3713. <point x="72" y="208" />
  3714. <point x="22" y="454" />
  3715. <point x="856" y="348" />
  3716. </points>
  3717. </layout>
  3718. <relation from="1186fa6c2b034ce885edbb8091b46505" from-iid="3045330c452647eb96ae41e241799231" from-field="ae810a56316134b858bb280ef494ca8d6481" to="bfe30d52b9874c9e889784357be31a14" to-iid="f6b988b16681472aabb064336c52e34a" to-field="a92ed274860e44bc5befe31a3ea2aed7b908" />
  3719. </item>
  3720. <item id="baadf4cdcea24736829d90875a341465" iid="8580555f2cbd4d0eacc95f5e199edd21" creation-date="11/08/2022 08:36:45" order-index="9" type="relation">
  3721. <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">
  3722. <points>
  3723. <point x="398" y="228" />
  3724. <point x="147" y="700" />
  3725. </points>
  3726. </layout>
  3727. <relation from="1186fa6c2b034ce885edbb8091b46505" from-iid="3045330c452647eb96ae41e241799231" from-field="a82555026870245e8aa971296f36acf7c481" to="b765908bd63249ed98fd4b67aaffb808" to-iid="5b1c442bf5e94c6087e35b73f4616120" to-field="ac5647322066d4c8183f23cc7e844cf74395" />
  3728. </item>
  3729. <item id="d073cec886784d5f925a27029b6df6c8" iid="44f14da978be446e89655cc1450ecc10" creation-date="11/08/2022 08:42:00" order-index="10" type="relation">
  3730. <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">
  3731. <points>
  3732. <point x="736" y="209" />
  3733. <point x="856" y="348" />
  3734. </points>
  3735. </layout>
  3736. <relation from="df4ed254302249d69a4c0ed1131d09cc" from-iid="418d0aa581c545cd81f9f0fe79d1e4fb" from-field="a7be97a141faa470a9dda9f7de8720f4d62" to="bfe30d52b9874c9e889784357be31a14" to-iid="f6b988b16681472aabb064336c52e34a" to-field="a92ed274860e44bc5befe31a3ea2aed7b908" />
  3737. </item>
  3738. <item id="87d93db58f7944799690a82b5062972d" iid="e6990ac1e6e947eba0cff4b2437dd6eb" creation-date="11/08/2022 08:42:38" order-index="11" type="relation">
  3739. <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">
  3740. <points>
  3741. <point x="410" y="227" />
  3742. <point x="410" y="700" />
  3743. </points>
  3744. </layout>
  3745. <relation from="df4ed254302249d69a4c0ed1131d09cc" from-iid="418d0aa581c545cd81f9f0fe79d1e4fb" from-field="a7a00dd817c9c4cdcb7bdfefb05443cf562" to="b765908bd63249ed98fd4b67aaffb808" to-iid="5b1c442bf5e94c6087e35b73f4616120" to-field="ac5647322066d4c8183f23cc7e844cf74395" />
  3746. </item>
  3747. <item id="24978a7816954c8b9b404b7f4eb78dd4" iid="a496c8177b5547c99181c57b2dad60be" creation-date="11/08/2022 08:45:53" order-index="12" type="relation">
  3748. <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">
  3749. <points>
  3750. <point x="1126" y="608" />
  3751. <point x="1323" y="348" />
  3752. </points>
  3753. </layout>
  3754. <relation from="457b363c986e438795a41f1d41a698f1" from-iid="a5c5e513910642c5b0efb24fd9fc2b38" from-field="af516ce71d9c745e59606792d0ce364ff38" to="bfe30d52b9874c9e889784357be31a14" to-iid="f6b988b16681472aabb064336c52e34a" to-field="a92ed274860e44bc5befe31a3ea2aed7b908" />
  3755. </item>
  3756. <item id="f3b285db7dad4fbd9515f21df0e12282" iid="dcb349adc6f041298abbc5620dd1fb95" creation-date="11/08/2022 08:46:16" order-index="13" type="relation">
  3757. <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">
  3758. <points>
  3759. <point x="1126" y="627" />
  3760. <point x="410" y="700" />
  3761. </points>
  3762. </layout>
  3763. <relation from="457b363c986e438795a41f1d41a698f1" from-iid="a5c5e513910642c5b0efb24fd9fc2b38" from-field="a3ed1729f040d4f6292c662be0265480c38" to="b765908bd63249ed98fd4b67aaffb808" to-iid="5b1c442bf5e94c6087e35b73f4616120" to-field="ac5647322066d4c8183f23cc7e844cf74395" />
  3764. </item>
  3765. <item id="c74988046a6746bfba1cf5db75e432b8" iid="054dac20a3be4cdaab4afd8f302fd76c" creation-date="11/08/2022 08:46:47" order-index="14" type="relation">
  3766. <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">
  3767. <points>
  3768. <point x="764" y="1066" />
  3769. <point x="856" y="348" />
  3770. </points>
  3771. </layout>
  3772. <relation from="d3d616beebc24f36b6938945ae4354c4" from-iid="102df699a8284fc68f3e4e8953a82bd0" from-field="aedffb28a70b54824af70db83e90864fe766" to="bfe30d52b9874c9e889784357be31a14" to-iid="f6b988b16681472aabb064336c52e34a" to-field="a92ed274860e44bc5befe31a3ea2aed7b908" />
  3773. </item>
  3774. <item id="9a7395ec0c17456db7ef4b014d6926d5" iid="4428ca3a33934607b6db8d0aed01fc2b" creation-date="11/08/2022 08:47:08" order-index="15" type="relation">
  3775. <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">
  3776. <points>
  3777. <point x="382" y="1086" />
  3778. <point x="410" y="700" />
  3779. </points>
  3780. </layout>
  3781. <relation from="d3d616beebc24f36b6938945ae4354c4" from-iid="102df699a8284fc68f3e4e8953a82bd0" from-field="ab0ed4682a90049478990dc6e20df5d11766" to="b765908bd63249ed98fd4b67aaffb808" to-iid="5b1c442bf5e94c6087e35b73f4616120" to-field="ac5647322066d4c8183f23cc7e844cf74395" />
  3782. </item>
  3783. </layer>
  3784. </diagram>
  3785. </model>
  3786. </sub-models>
  3787. </model>
  3788. <model id="pb4ba914fc4fe4880821bbf7c9406e98b_916368183" name="Implementation" namespace="" order-index="3" expanded="true">
  3789. <meta>
  3790. <authors>
  3791. <author> </author>
  3792. </authors>
  3793. <description />
  3794. <creation-date>11/06/2022 16:42:24</creation-date>
  3795. <change-date>01/01/0001 00:00:00</change-date>
  3796. <revision-count>0</revision-count>
  3797. <version />
  3798. </meta>
  3799. <abstract-items />
  3800. <sub-models>
  3801. <model id="p281a02d1627a44b68d7b4f5f9b9e6e6f_506610107" name="Modules" namespace="" order-index="1" expanded="true">
  3802. <meta>
  3803. <authors>
  3804. <author> </author>
  3805. </authors>
  3806. <description />
  3807. <creation-date>11/06/2022 16:42:57</creation-date>
  3808. <change-date>01/01/0001 00:00:00</change-date>
  3809. <revision-count>0</revision-count>
  3810. <version />
  3811. </meta>
  3812. <abstract-items />
  3813. <sub-models>
  3814. <model id="pe0e8f121bf7c4fd7b8ec69a3248b8637_619350725" name="Base" namespace="" order-index="1" expanded="true">
  3815. <meta>
  3816. <authors>
  3817. <author> </author>
  3818. </authors>
  3819. <description />
  3820. <creation-date>11/06/2022 16:43:09</creation-date>
  3821. <change-date>01/01/0001 00:00:00</change-date>
  3822. <revision-count>0</revision-count>
  3823. <version />
  3824. </meta>
  3825. <abstract-items />
  3826. <sub-models>
  3827. <model id="p86104765aa514bc1a0a9d45c4b94488e_464839088" name="Services" namespace="" order-index="2" expanded="true">
  3828. <meta>
  3829. <authors>
  3830. <author> </author>
  3831. </authors>
  3832. <description />
  3833. <creation-date>11/06/2022 16:44:46</creation-date>
  3834. <change-date>01/01/0001 00:00:00</change-date>
  3835. <revision-count>0</revision-count>
  3836. <version />
  3837. </meta>
  3838. <abstract-items />
  3839. <sub-models />
  3840. <diagram type="uml-object" id="pd1584a862d66403089ce89ee3ee4aabc_452816340" name="UserService" order-index="0" uid="" name-style="" auto-routed-paths="false" default-line-style="default">
  3841. <style>
  3842. <background-color index="1" color="#FFFFFFFF" />
  3843. <background-color index="2" color="#FFFFFFFF" />
  3844. <background-type type="solid" />
  3845. </style>
  3846. <meta>
  3847. <authors>
  3848. <author> </author>
  3849. </authors>
  3850. <description />
  3851. <creation-date>11/06/2022 16:44:31</creation-date>
  3852. <change-date>11/06/2022 16:54:18</change-date>
  3853. <revision-count>0</revision-count>
  3854. <version />
  3855. </meta>
  3856. <abstract-items>
  3857. <item id="7cc326573a20477690a09e1cd2066d38" cid="ELEM004" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:50:15" from="39eb180f4e0248729b2ed058d15c19d8" to="3ed6e80069834d258c640a4255a93735">
  3858. <connector />
  3859. </item>
  3860. <item id="3ed6e80069834d258c640a4255a93735" cid="C001" type="class" name="UserService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:45:42" visibility="undefined">
  3861. <stereotypes>
  3862. <stereotype name="service" />
  3863. </stereotypes>
  3864. <stereotype-instances>
  3865. <stereotype id="3ed6e80069834d258c640a4255a93735_service_c" type="service" ref="" />
  3866. </stereotype-instances>
  3867. <operations>
  3868. <operation id="o794835c3a4494774ac8cd47294ca67a1360" cid="OP001" name="CreateUser" creation-date="11/06/2022 16:47:42" type="" type-id="" visibility="undefined">
  3869. <source-codes>
  3870. <source-code language="ActionScript" />
  3871. </source-codes>
  3872. </operation>
  3873. <operation id="oa04ea5c376ed43fbbc1ff0c041613176230" cid="OP002" name="DeleteUser" creation-date="11/06/2022 16:47:42" type="" type-id="" visibility="undefined">
  3874. <source-codes>
  3875. <source-code language="ActionScript" />
  3876. </source-codes>
  3877. </operation>
  3878. <operation id="oc18ceca81a3f439baecd9631e995acc1717" cid="OP003" name="GetUser" creation-date="11/06/2022 16:47:42" type="" type-id="" visibility="undefined">
  3879. <source-codes>
  3880. <source-code language="ActionScript" />
  3881. </source-codes>
  3882. </operation>
  3883. <operation id="od0d2a33d4b394457bedcbc9966d3d8f6198" cid="OP004" name="Lock" creation-date="11/06/2022 16:47:42" type="" type-id="" visibility="undefined">
  3884. <source-codes>
  3885. <source-code language="ActionScript" />
  3886. </source-codes>
  3887. </operation>
  3888. </operations>
  3889. <source-codes>
  3890. <source-code language="ActionScript" />
  3891. </source-codes>
  3892. </item>
  3893. <item id="39eb180f4e0248729b2ed058d15c19d8" cid="OBJ001" type="object" name="UserService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:48:10" visibility="undefined">
  3894. <stereotypes>
  3895. <stereotype name="injection" />
  3896. </stereotypes>
  3897. <stereotype-instances>
  3898. <stereotype id="39eb180f4e0248729b2ed058d15c19d8_injection_c" type="injection" ref="" />
  3899. </stereotype-instances>
  3900. <object classifier-name="">
  3901. <attributes>
  3902. <attribute name="repository" value="RepoUser" />
  3903. <attribute name="currentContext" value="QlbrcContext" />
  3904. <attribute name="loggerFactory" value="" />
  3905. </attributes>
  3906. </object>
  3907. </item>
  3908. <item id="c9b365148daa4cbdafc8000bbc9783b5" cid="GNR001" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:54:18" from="3ed6e80069834d258c640a4255a93735" to="46d6acea9ee94f478d35fd94222823d1" visibility="package" />
  3909. </abstract-items>
  3910. <layer id="41aff4bb8e98428d88ec62b4c7523939" name="Default" visible="true" enabled="true" locked="false">
  3911. <item id="3ed6e80069834d258c640a4255a93735" iid="9af97ba125b84743a4bd87a190e410dc" show-fields="true" creation-date="11/06/2022 16:45:42" order-index="0" type="entity">
  3912. <layout ax="249" ay="317" awidth="555" aheight="160" x="249" y="317" width="555" height="160" rotation-center="-207.5,0" />
  3913. <classifier />
  3914. <class />
  3915. </item>
  3916. <item id="39eb180f4e0248729b2ed058d15c19d8" iid="d4ce60313fbd41aa9ff9ad252d6758c1" creation-date="11/06/2022 16:48:10" order-index="1" type="entity">
  3917. <layout ax="423" ay="65" awidth="207" aheight="160" x="423" y="65" width="207" height="160" rotation-center="-33.5,0" />
  3918. </item>
  3919. <item id="7cc326573a20477690a09e1cd2066d38" iid="92a4efd657404e57a9914432cd5d2cc9" creation-date="11/06/2022 16:50:15" order-index="2" type="relation">
  3920. <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">
  3921. <points>
  3922. <point x="524" y="225" />
  3923. <point x="526" y="317" />
  3924. </points>
  3925. </layout>
  3926. <relation from="39eb180f4e0248729b2ed058d15c19d8" from-iid="d4ce60313fbd41aa9ff9ad252d6758c1" to="3ed6e80069834d258c640a4255a93735" to-iid="9af97ba125b84743a4bd87a190e410dc" />
  3927. </item>
  3928. <item id="46d6acea9ee94f478d35fd94222823d1" iid="21e3295ad1c1482b989150c2e6940d62" show-fields="true" creation-date="11/06/2022 16:53:13" order-index="0" type="entity">
  3929. <layout ax="739" ay="65" awidth="140" aheight="160" x="739" y="65" width="140" height="160" />
  3930. <classifier />
  3931. <class />
  3932. </item>
  3933. <item id="c9b365148daa4cbdafc8000bbc9783b5" iid="c53cab43e82b486fad1b4162ac9976b2" creation-date="11/06/2022 16:54:18" order-index="3" type="relation">
  3934. <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">
  3935. <points>
  3936. <point x="526" y="317" />
  3937. <point x="809" y="225" />
  3938. </points>
  3939. </layout>
  3940. <relation from="3ed6e80069834d258c640a4255a93735" from-iid="9af97ba125b84743a4bd87a190e410dc" to="46d6acea9ee94f478d35fd94222823d1" to-iid="21e3295ad1c1482b989150c2e6940d62" />
  3941. </item>
  3942. </layer>
  3943. </diagram>
  3944. <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">
  3945. <style>
  3946. <background-color index="1" color="#FFFFFFFF" />
  3947. <background-color index="2" color="#FFFFFFFF" />
  3948. <background-type type="solid" />
  3949. </style>
  3950. <meta>
  3951. <authors>
  3952. <author> </author>
  3953. </authors>
  3954. <description />
  3955. <creation-date>11/06/2022 16:58:31</creation-date>
  3956. <change-date>11/06/2022 17:03:05</change-date>
  3957. <revision-count>0</revision-count>
  3958. <version />
  3959. </meta>
  3960. <abstract-items>
  3961. <item id="f3456d04aa124ec5add044c05c554261" cid="OBJ005" type="object" name="TenantService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:01:11" visibility="undefined">
  3962. <stereotypes>
  3963. <stereotype name="injection" />
  3964. </stereotypes>
  3965. <stereotype-instances>
  3966. <stereotype id="f3456d04aa124ec5add044c05c554261_injection_c" type="injection" ref="" />
  3967. </stereotype-instances>
  3968. <object classifier-name="">
  3969. <attributes>
  3970. <attribute name="repository" value="RepoTenant" />
  3971. <attribute name="currentContext" value="QlrbcContext" />
  3972. <attribute name="loggerFactory" value="" />
  3973. </attributes>
  3974. </object>
  3975. </item>
  3976. <item id="91cb612d4ae54c0aa919b7804d42921f" cid="GNR002" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:02:59" from="0faf8c3fe2b14c878fb5677b298d52cd" to="46d6acea9ee94f478d35fd94222823d1" visibility="package" />
  3977. <item id="a6ed5fd7337a483dbe2066ceb2198e67" cid="ELEM005" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:03:05" from="0faf8c3fe2b14c878fb5677b298d52cd" to="f3456d04aa124ec5add044c05c554261">
  3978. <connector />
  3979. </item>
  3980. <item id="0faf8c3fe2b14c878fb5677b298d52cd" cid="C004" type="class" name="TenantService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:58:45" visibility="undefined">
  3981. <stereotypes>
  3982. <stereotype name="service" />
  3983. </stereotypes>
  3984. <stereotype-instances>
  3985. <stereotype id="0faf8c3fe2b14c878fb5677b298d52cd_service_c" type="service" ref="" />
  3986. </stereotype-instances>
  3987. <operations>
  3988. <operation id="o6fc19c68cf504220b7f33a92f168377d49" cid="OP005" name="ExistsTenant" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined">
  3989. <source-codes>
  3990. <source-code language="ActionScript" />
  3991. </source-codes>
  3992. </operation>
  3993. <operation id="ofcb769f4f2f44cf1a499d7df738e8946241" cid="OP006" name="Lock" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined" />
  3994. <operation id="o765b48f68f22487a9899b98f8cb3b07b449" cid="OP007" name="GetTenant" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined" />
  3995. <operation id="o541b93c6e78344d19f114f7d9a560b86821" cid="OP008" name="CreateTenant" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined" />
  3996. <operation id="o9c6fc72de6054fba9924ddcf4684b5da900" cid="OP009" name="Validate" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined" />
  3997. <operation id="o74aa14b24aac4aee8316e5214f83aed996" cid="OP010" name="UpdateTenant" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined" />
  3998. <operation id="o65fd7c2126da4b2ba9795a74c7a917e3372" cid="OP011" name="DeleteTenant" creation-date="11/06/2022 17:00:33" type="" type-id="" visibility="undefined" />
  3999. </operations>
  4000. <source-codes>
  4001. <source-code language="ActionScript" />
  4002. </source-codes>
  4003. </item>
  4004. </abstract-items>
  4005. <layer id="ab8fcb84b3ef452a9268181e5fce0074" name="Default" visible="true" enabled="true" locked="false">
  4006. <item id="0faf8c3fe2b14c878fb5677b298d52cd" iid="7272c1519d704568b6b6b91b1cb04c22" show-fields="true" creation-date="11/06/2022 16:58:45" order-index="0" type="entity">
  4007. <layout ax="336" ay="296" awidth="379" aheight="232" x="336" y="296" width="379" height="232" rotation-center="-119.5,-36" />
  4008. <classifier />
  4009. <class />
  4010. </item>
  4011. <item id="f3456d04aa124ec5add044c05c554261" iid="8ecb3ea9abae4d71b27076220b2d0601" creation-date="11/06/2022 17:01:11" order-index="1" type="entity">
  4012. <layout ax="443" ay="39" awidth="140" aheight="160" x="443" y="39" width="140" height="160" />
  4013. </item>
  4014. <item id="46d6acea9ee94f478d35fd94222823d1" iid="745ca12e37174d1796d95f6225db466a" show-fields="true" creation-date="11/06/2022 16:53:13" order-index="0" type="entity">
  4015. <layout ax="799" ay="39" awidth="140" aheight="160" x="799" y="39" width="140" height="160" />
  4016. <classifier />
  4017. <class />
  4018. </item>
  4019. <item id="91cb612d4ae54c0aa919b7804d42921f" iid="cba542201cf74319806359b37fbd27a9" creation-date="11/06/2022 17:02:59" order-index="2" type="relation">
  4020. <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">
  4021. <points>
  4022. <point x="526" y="296" />
  4023. <point x="869" y="199" />
  4024. </points>
  4025. </layout>
  4026. <relation from="0faf8c3fe2b14c878fb5677b298d52cd" from-iid="7272c1519d704568b6b6b91b1cb04c22" to="46d6acea9ee94f478d35fd94222823d1" to-iid="745ca12e37174d1796d95f6225db466a" />
  4027. </item>
  4028. <item id="a6ed5fd7337a483dbe2066ceb2198e67" iid="38f8623795fe4507b49770cb4e085331" creation-date="11/06/2022 17:03:05" order-index="3" type="relation">
  4029. <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">
  4030. <points>
  4031. <point x="526" y="296" />
  4032. <point x="513" y="199" />
  4033. </points>
  4034. </layout>
  4035. <relation from="0faf8c3fe2b14c878fb5677b298d52cd" from-iid="7272c1519d704568b6b6b91b1cb04c22" to="f3456d04aa124ec5add044c05c554261" to-iid="8ecb3ea9abae4d71b27076220b2d0601" />
  4036. </item>
  4037. </layer>
  4038. </diagram>
  4039. <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">
  4040. <style>
  4041. <background-color index="1" color="#FFFFFFFF" />
  4042. <background-color index="2" color="#FFFFFFFF" />
  4043. <background-type type="solid" />
  4044. </style>
  4045. <meta>
  4046. <authors>
  4047. <author> </author>
  4048. </authors>
  4049. <description />
  4050. <creation-date>11/06/2022 17:03:29</creation-date>
  4051. <change-date>11/06/2022 17:07:43</change-date>
  4052. <revision-count>0</revision-count>
  4053. <version />
  4054. </meta>
  4055. <abstract-items>
  4056. <item id="96885c6e72064a9c9e9d688acff09c0d" cid="ELEM006" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:07:22" from="36a7d1fb19fb4d318895b30f13b1898c" to="060994f2e03b4db1a5b73126dab76749">
  4057. <connector />
  4058. </item>
  4059. <item id="36a7d1fb19fb4d318895b30f13b1898c" cid="C005" type="class" name="SettingsService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:03:54" visibility="undefined">
  4060. <stereotypes>
  4061. <stereotype name="service" />
  4062. </stereotypes>
  4063. <stereotype-instances>
  4064. <stereotype id="36a7d1fb19fb4d318895b30f13b1898c_service_c" type="service" ref="" />
  4065. </stereotype-instances>
  4066. <operations>
  4067. <operation id="ob2e214e604c749bc966b0a6f9bd9751f872" cid="OP012" name="CreateSettings" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
  4068. <operation id="oa1bfa8e2afea4c219b301251abcc1678112" cid="OP013" name="GetSettings" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
  4069. <operation id="o5e608d50d4d446d6bbf4c73296e8692c520" cid="OP014" name="GetSettingsValue" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
  4070. <operation id="o4b7b8fb0a8e9463883e3b73ac602531f279" cid="OP015" name="ExistsSettings" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
  4071. <operation id="o942f4b98249f41f8b252602930417fed231" cid="OP016" name="ExistsSettingsValue" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
  4072. <operation id="of792b3465d6b42aa9fd4ad849119a60b479" cid="OP017" name="AddSettingsValue" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
  4073. <operation id="o6d98f57fc01646a38094b660a302e2ed768" cid="OP018" name="UpdateSettings" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
  4074. <operation id="o39086ca5ba634ef3806ac6e47c2ebc7e558" cid="OP019" name="UpdateSettingsValue" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
  4075. <operation id="o609310cf80764df8aa3f6ad63f2038ab519" cid="OP020" name="AddOrUpdateSettingsValue" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
  4076. <operation id="o1d12c2c656f743ddb16e0cd47cb72513856" cid="OP021" name="GetSettingsValues" creation-date="11/06/2022 17:06:07" type="" type-id="" visibility="undefined" />
  4077. </operations>
  4078. <source-codes>
  4079. <source-code language="ActionScript" />
  4080. </source-codes>
  4081. </item>
  4082. <item id="060994f2e03b4db1a5b73126dab76749" cid="OBJ006" type="object" name="SettingsService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:06:21" visibility="undefined">
  4083. <stereotypes>
  4084. <stereotype name="injection" />
  4085. </stereotypes>
  4086. <stereotype-instances>
  4087. <stereotype id="060994f2e03b4db1a5b73126dab76749_injection_c" type="injection" ref="" />
  4088. </stereotype-instances>
  4089. <object classifier-name="">
  4090. <attributes>
  4091. <attribute name="repository" value="RepoSetting" />
  4092. <attribute name="currentContext" value="QlrbcContext" />
  4093. <attribute name="loggerFactory" value="" />
  4094. </attributes>
  4095. </object>
  4096. </item>
  4097. <item id="9743a212e65545a0a23751b8c7c55dea" cid="GNR003" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 17:07:43" from="36a7d1fb19fb4d318895b30f13b1898c" to="46d6acea9ee94f478d35fd94222823d1" visibility="package" />
  4098. </abstract-items>
  4099. <layer id="23d1b8e7eb1e4973b4fac78af55a16a1" name="Default" visible="true" enabled="true" locked="false">
  4100. <item id="36a7d1fb19fb4d318895b30f13b1898c" iid="5a3e38a1fcf54b4dbb9a375ba2658c25" show-fields="true" creation-date="11/06/2022 17:03:54" order-index="0" type="entity">
  4101. <layout ax="340" ay="273" awidth="405" aheight="322" x="340" y="273" width="405" height="322" rotation-center="-132.5,-81" />
  4102. <classifier />
  4103. <class />
  4104. </item>
  4105. <item id="060994f2e03b4db1a5b73126dab76749" iid="1f90737a4bf84feca9cac1481bf4df72" creation-date="11/06/2022 17:06:21" order-index="1" type="entity">
  4106. <layout ax="384" ay="36" awidth="207" aheight="160" x="384" y="36" width="207" height="160" rotation-center="33.5,0" />
  4107. </item>
  4108. <item id="96885c6e72064a9c9e9d688acff09c0d" iid="e63c7b99ca39444a881bd39609176d19" creation-date="11/06/2022 17:07:22" order-index="2" type="relation">
  4109. <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">
  4110. <points>
  4111. <point x="542" y="273" />
  4112. <point x="488" y="196" />
  4113. </points>
  4114. </layout>
  4115. <relation from="36a7d1fb19fb4d318895b30f13b1898c" from-iid="5a3e38a1fcf54b4dbb9a375ba2658c25" to="060994f2e03b4db1a5b73126dab76749" to-iid="1f90737a4bf84feca9cac1481bf4df72" />
  4116. </item>
  4117. <item id="46d6acea9ee94f478d35fd94222823d1" iid="c96a9c0eaeb340f9ab3f2eaeaa14db40" show-fields="true" creation-date="11/06/2022 16:53:13" order-index="0" type="entity">
  4118. <layout ax="837" ay="36" awidth="140" aheight="160" x="837" y="36" width="140" height="160" />
  4119. <classifier />
  4120. <class />
  4121. </item>
  4122. <item id="9743a212e65545a0a23751b8c7c55dea" iid="8d7bdada3d41485d806721e7a2bd8c65" creation-date="11/06/2022 17:07:43" order-index="3" type="relation">
  4123. <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">
  4124. <points>
  4125. <point x="542" y="273" />
  4126. <point x="907" y="196" />
  4127. </points>
  4128. </layout>
  4129. <relation from="36a7d1fb19fb4d318895b30f13b1898c" from-iid="5a3e38a1fcf54b4dbb9a375ba2658c25" to="46d6acea9ee94f478d35fd94222823d1" to-iid="c96a9c0eaeb340f9ab3f2eaeaa14db40" />
  4130. </item>
  4131. </layer>
  4132. </diagram>
  4133. </model>
  4134. </sub-models>
  4135. </model>
  4136. <model id="p223e98f24dc24b5ba97eaf31797eaf4f_349702731" name="Common" namespace="" order-index="2" expanded="true">
  4137. <meta>
  4138. <authors>
  4139. <author> </author>
  4140. </authors>
  4141. <description />
  4142. <creation-date>11/06/2022 16:46:21</creation-date>
  4143. <change-date>01/01/0001 00:00:00</change-date>
  4144. <revision-count>0</revision-count>
  4145. <version />
  4146. </meta>
  4147. <abstract-items />
  4148. <sub-models>
  4149. <model id="p7e57d3bc587141998753a4e43ade41c2_822514128" name="Services" namespace="" order-index="1" expanded="true">
  4150. <meta>
  4151. <authors>
  4152. <author> </author>
  4153. </authors>
  4154. <description />
  4155. <creation-date>11/06/2022 16:51:07</creation-date>
  4156. <change-date>01/01/0001 00:00:00</change-date>
  4157. <revision-count>0</revision-count>
  4158. <version />
  4159. </meta>
  4160. <abstract-items />
  4161. <sub-models />
  4162. <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">
  4163. <style>
  4164. <background-color index="1" color="#FFFFFFFF" />
  4165. <background-color index="2" color="#FFFFFFFF" />
  4166. <background-type type="solid" />
  4167. </style>
  4168. <meta>
  4169. <authors>
  4170. <author> </author>
  4171. </authors>
  4172. <description />
  4173. <creation-date>11/06/2022 16:51:20</creation-date>
  4174. <change-date>12/07/2022 05:24:58</change-date>
  4175. <revision-count>0</revision-count>
  4176. <version />
  4177. </meta>
  4178. <abstract-items>
  4179. <item id="e43d3fe1f6eb4864bda6105388cd01ad" cid="GNR006" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:23:10" from="46d6acea9ee94f478d35fd94222823d1" to="9d3c3e4449654a8eb8937c600d6387cb" visibility="package" />
  4180. <item id="a450326c9e38432b906d894d13d94161" cid="ELEM003" type="template-parameter" name="TRepository1" owner="44a36b903018464184f14b39c3b5c834" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:13:10">
  4181. <template-parameter />
  4182. </item>
  4183. <item id="2b78dae590774ba29408b5a7421772f8" cid="GNR005" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:22:55" from="9d3c3e4449654a8eb8937c600d6387cb" to="3a66f5b07fb94e5798d0bb4c5c194a2e" visibility="package" />
  4184. <item id="065ff00536924b68a0e40e5a3c5285de" cid="ELEM026" type="template-parameter" name="TRepository" owner="d377c2fa19bc467cbe34ff3f15c549a3" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:24:51">
  4185. <template-parameter />
  4186. </item>
  4187. <item id="1dccc832d02c4ce7b8aa6ed5f20e0a3e" cid="ELEM002" type="template-parameter" name="TRepository" owner="46d6acea9ee94f478d35fd94222823d1" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:53:43">
  4188. <template-parameter />
  4189. </item>
  4190. <item id="45e6b0d9085a485f9ba8b04f83099e60" cid="GNR007" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:23:18" from="44a36b903018464184f14b39c3b5c834" to="9d3c3e4449654a8eb8937c600d6387cb" visibility="package" />
  4191. <item id="d377c2fa19bc467cbe34ff3f15c549a3" cid="C013" type="class" name="AbstractWorkerService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:23:58" visibility="undefined">
  4192. <stereotypes>
  4193. <stereotype name="class" />
  4194. </stereotypes>
  4195. <stereotype-instances>
  4196. <stereotype id="d377c2fa19bc467cbe34ff3f15c549a3_class_c" type="class" ref="" />
  4197. </stereotype-instances>
  4198. <owned-items />
  4199. <template-parameters>
  4200. <template-parameter id="t5dd0192a160140b4a398776ebcb537ef282" name="TRepository" kind="" default-value="" ref="065ff00536924b68a0e40e5a3c5285de" />
  4201. <template-parameter id="tb4676a8c48ad4010b300e58318cf72d7284" name="TWorker" kind="" default-value="" ref="ac37d7f220364a87aa4991c7564e249a" />
  4202. <template-parameter id="t3b9c9a47b5ab4fbfb97aec57f1ce60f3284" name="" kind="" default-value="" ref="d19fe1a5d2d94d40a6103951d1d6ded2" />
  4203. </template-parameters>
  4204. <source-codes>
  4205. <source-code language="ActionScript" />
  4206. </source-codes>
  4207. </item>
  4208. <item id="7399b648d3cb40019de69d5f8ea9f2b9" cid="C002" type="class" name="AbstractRepositoryService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:51:40" visibility="undefined" is-abstract="true">
  4209. <stereotypes>
  4210. <stereotype name="class" />
  4211. </stereotypes>
  4212. <stereotype-instances>
  4213. <stereotype id="7399b648d3cb40019de69d5f8ea9f2b9_class_c" type="class" ref="" />
  4214. </stereotype-instances>
  4215. <owned-items />
  4216. <template-parameters>
  4217. <template-parameter id="td4e45cb8f4e5405aba338a3cd8687421126" name="TRepository" kind="" default-value="" ref="973f3350bf004251bfd79b861f6bfe4f" />
  4218. </template-parameters>
  4219. <source-codes>
  4220. <source-code language="ActionScript" />
  4221. </source-codes>
  4222. </item>
  4223. <item id="d19fe1a5d2d94d40a6103951d1d6ded2" cid="ELEM028" type="template-parameter" owner="d377c2fa19bc467cbe34ff3f15c549a3" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:24:51">
  4224. <template-parameter />
  4225. </item>
  4226. <item id="03c425c9d95a4dabb6a0127890768487" cid="ELEM009" type="template-parameter" name="TRepository4" owner="44a36b903018464184f14b39c3b5c834" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:13:10">
  4227. <template-parameter />
  4228. </item>
  4229. <item id="71691530fb544e2898935b1493808140" cid="GNR008" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:24:58" from="d377c2fa19bc467cbe34ff3f15c549a3" to="46d6acea9ee94f478d35fd94222823d1" visibility="package" />
  4230. <item id="9d3c3e4449654a8eb8937c600d6387cb" cid="C011" type="class" name="AbstractService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:22:05" visibility="undefined">
  4231. <stereotypes>
  4232. <stereotype name="class" />
  4233. </stereotypes>
  4234. <stereotype-instances>
  4235. <stereotype id="9d3c3e4449654a8eb8937c600d6387cb_class_c" type="class" ref="" />
  4236. </stereotype-instances>
  4237. <source-codes>
  4238. <source-code language="ActionScript" />
  4239. </source-codes>
  4240. </item>
  4241. <item id="92049b015be3442990ac987167c8abd0" cid="ELEM007" type="template-parameter" name="TRepository2" owner="44a36b903018464184f14b39c3b5c834" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:13:10">
  4242. <template-parameter />
  4243. </item>
  4244. <item id="ac37d7f220364a87aa4991c7564e249a" cid="ELEM027" type="template-parameter" name="TWorker" owner="d377c2fa19bc467cbe34ff3f15c549a3" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:24:51">
  4245. <template-parameter />
  4246. </item>
  4247. <item id="a5e7c34c752b4ca59ce9a4994c3dc642" cid="ELEM010" type="template-parameter" name="TRepository5" owner="44a36b903018464184f14b39c3b5c834" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:13:10">
  4248. <template-parameter />
  4249. </item>
  4250. <item id="d283670b81f54b88aa9033684d50a965" cid="ELEM008" type="template-parameter" name="TRepository3" owner="44a36b903018464184f14b39c3b5c834" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:13:10">
  4251. <template-parameter />
  4252. </item>
  4253. <item id="44a36b903018464184f14b39c3b5c834" cid="C007" type="class" name="AbstractMultiRepositoryService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:12:17" visibility="undefined">
  4254. <stereotypes>
  4255. <stereotype name="class" />
  4256. </stereotypes>
  4257. <stereotype-instances>
  4258. <stereotype id="44a36b903018464184f14b39c3b5c834_class_c" type="class" ref="" />
  4259. </stereotype-instances>
  4260. <owned-items />
  4261. <template-parameters>
  4262. <template-parameter id="tb3aba22d26d542d5aba5fb842218cca0990" name="TRepository1" kind="" default-value="" ref="a450326c9e38432b906d894d13d94161" />
  4263. <template-parameter id="t6cc6997b06d24cde93360a768ba1431c992" name="TRepository2" kind="" default-value="" ref="92049b015be3442990ac987167c8abd0" />
  4264. <template-parameter id="t4e2fee2e6e6f474e8252229b5651a913992" name="TRepository3" kind="" default-value="" ref="d283670b81f54b88aa9033684d50a965" />
  4265. <template-parameter id="t8b1f967b552c461db37bd6f53ee80f85992" name="TRepository4" kind="" default-value="" ref="03c425c9d95a4dabb6a0127890768487" />
  4266. <template-parameter id="t035e67e1b90f4c96818febafc05f93a2992" name="TRepository5" kind="" default-value="" ref="a5e7c34c752b4ca59ce9a4994c3dc642" />
  4267. </template-parameters>
  4268. <source-codes>
  4269. <source-code language="ActionScript" />
  4270. </source-codes>
  4271. </item>
  4272. <item id="46d6acea9ee94f478d35fd94222823d1" cid="C003" type="class" name="AbstractRepositoryService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/06/2022 16:53:13" visibility="undefined" is-abstract="true">
  4273. <stereotypes>
  4274. <stereotype name="class" />
  4275. </stereotypes>
  4276. <stereotype-instances>
  4277. <stereotype id="46d6acea9ee94f478d35fd94222823d1_class_c" type="class" ref="" />
  4278. </stereotype-instances>
  4279. <owned-items />
  4280. <template-parameters>
  4281. <template-parameter id="tdf2e616fc6ee47dd9dd448158b23b5e3373" name="TRepository" kind="" default-value="" ref="1dccc832d02c4ce7b8aa6ed5f20e0a3e" />
  4282. </template-parameters>
  4283. <source-codes>
  4284. <source-code language="ActionScript" />
  4285. </source-codes>
  4286. </item>
  4287. <item id="3a66f5b07fb94e5798d0bb4c5c194a2e" cid="C012" type="class" name="IService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:22:32" visibility="undefined">
  4288. <stereotypes>
  4289. <stereotype name="interface" />
  4290. </stereotypes>
  4291. <stereotype-instances>
  4292. <stereotype id="3a66f5b07fb94e5798d0bb4c5c194a2e_interface_c" type="interface" ref="" />
  4293. </stereotype-instances>
  4294. <source-codes>
  4295. <source-code language="ActionScript" />
  4296. </source-codes>
  4297. </item>
  4298. </abstract-items>
  4299. <layer id="974947da2bfc444388bc6e89db6ee384" name="Default" visible="true" enabled="true" locked="false">
  4300. <item id="46d6acea9ee94f478d35fd94222823d1" iid="53d0321243e44a419dacd0a0a3868405" show-fields="true" creation-date="11/06/2022 16:53:13" order-index="0" type="entity">
  4301. <layout ax="455" ay="384" awidth="140" aheight="160" x="455" y="384" width="140" height="160" />
  4302. <classifier />
  4303. <class />
  4304. </item>
  4305. <item id="44a36b903018464184f14b39c3b5c834" iid="c5b6bdd8605945748f1d4ff738d530d8" show-fields="true" creation-date="11/08/2022 05:12:17" order-index="1" type="entity">
  4306. <layout ax="875" ay="394" awidth="140" aheight="160" x="875" y="394" width="140" height="160" />
  4307. <classifier />
  4308. <class />
  4309. </item>
  4310. <item id="9d3c3e4449654a8eb8937c600d6387cb" iid="db1d120067954e06a70acf78671fa7b8" show-fields="true" creation-date="12/07/2022 05:22:05" order-index="2" type="entity">
  4311. <layout ax="711" ay="83" awidth="140" aheight="160" x="711" y="83" width="140" height="160" />
  4312. <classifier />
  4313. <class />
  4314. </item>
  4315. <item id="3a66f5b07fb94e5798d0bb4c5c194a2e" iid="0ec569ee832d4154b6e7c3a1b19f93ec" show-fields="true" creation-date="12/07/2022 05:22:32" order-index="3" type="entity">
  4316. <layout ax="374" ay="-77" awidth="140" aheight="160" x="374" y="-77" width="140" height="160" />
  4317. <classifier />
  4318. <class />
  4319. </item>
  4320. <item id="2b78dae590774ba29408b5a7421772f8" iid="2632e963378c465c9e829d2bd4ea75a6" creation-date="12/07/2022 05:22:55" order-index="4" type="relation">
  4321. <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">
  4322. <points>
  4323. <point x="781" y="83" />
  4324. <point x="514" y="3" />
  4325. </points>
  4326. </layout>
  4327. <relation from="9d3c3e4449654a8eb8937c600d6387cb" from-iid="db1d120067954e06a70acf78671fa7b8" to="3a66f5b07fb94e5798d0bb4c5c194a2e" to-iid="0ec569ee832d4154b6e7c3a1b19f93ec" />
  4328. </item>
  4329. <item id="e43d3fe1f6eb4864bda6105388cd01ad" iid="75723ac28c834b01939df1740aad0ad6" creation-date="12/07/2022 05:23:10" order-index="5" type="relation">
  4330. <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">
  4331. <points>
  4332. <point x="525" y="384" />
  4333. <point x="781" y="243" />
  4334. </points>
  4335. </layout>
  4336. <relation from="46d6acea9ee94f478d35fd94222823d1" from-iid="53d0321243e44a419dacd0a0a3868405" to="9d3c3e4449654a8eb8937c600d6387cb" to-iid="db1d120067954e06a70acf78671fa7b8" />
  4337. </item>
  4338. <item id="45e6b0d9085a485f9ba8b04f83099e60" iid="1f16e3edeee747fdbc12848a4764bc8e" creation-date="12/07/2022 05:23:18" order-index="6" type="relation">
  4339. <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">
  4340. <points>
  4341. <point x="945" y="394" />
  4342. <point x="781" y="243" />
  4343. </points>
  4344. </layout>
  4345. <relation from="44a36b903018464184f14b39c3b5c834" from-iid="c5b6bdd8605945748f1d4ff738d530d8" to="9d3c3e4449654a8eb8937c600d6387cb" to-iid="db1d120067954e06a70acf78671fa7b8" />
  4346. </item>
  4347. <item id="71691530fb544e2898935b1493808140" iid="045196d42f8a4a57b8d7f1f1e802b7ae" creation-date="12/07/2022 05:24:58" order-index="8" type="relation">
  4348. <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">
  4349. <points>
  4350. <point x="333" y="629" />
  4351. <point x="525" y="544" />
  4352. </points>
  4353. </layout>
  4354. <relation from="d377c2fa19bc467cbe34ff3f15c549a3" from-iid="123b9816755c49a3b36e7d5b10a20a3a" to="46d6acea9ee94f478d35fd94222823d1" to-iid="53d0321243e44a419dacd0a0a3868405" />
  4355. </item>
  4356. <item id="d377c2fa19bc467cbe34ff3f15c549a3" iid="123b9816755c49a3b36e7d5b10a20a3a" show-fields="true" creation-date="12/07/2022 05:23:58" order-index="7" type="entity">
  4357. <layout ax="267" ay="629" awidth="140" aheight="160" x="267" y="629" width="140" height="160" />
  4358. <classifier />
  4359. <class />
  4360. </item>
  4361. </layer>
  4362. </diagram>
  4363. </model>
  4364. </sub-models>
  4365. </model>
  4366. <model id="p86283f6d46a746afabaffdd167058442_433835851" name="Customer" namespace="" order-index="3" expanded="true">
  4367. <meta>
  4368. <authors>
  4369. <author> </author>
  4370. </authors>
  4371. <description />
  4372. <creation-date>11/06/2022 17:08:04</creation-date>
  4373. <change-date>01/01/0001 00:00:00</change-date>
  4374. <revision-count>0</revision-count>
  4375. <version />
  4376. </meta>
  4377. <abstract-items />
  4378. <sub-models>
  4379. <model id="pc102eb3f8c0042f0b39c1555bb31fd00_155811898" name="Services" namespace="" order-index="1" expanded="true">
  4380. <meta>
  4381. <authors>
  4382. <author> </author>
  4383. </authors>
  4384. <description />
  4385. <creation-date>11/06/2022 17:08:19</creation-date>
  4386. <change-date>01/01/0001 00:00:00</change-date>
  4387. <revision-count>0</revision-count>
  4388. <version />
  4389. </meta>
  4390. <abstract-items />
  4391. <sub-models />
  4392. <diagram type="uml-object" id="pc40d3cebeb144dfebabdd0241c2bcb05_664271647" name="CustomerService" order-index="1" uid="" name-style="" auto-routed-paths="false" default-line-style="default">
  4393. <style>
  4394. <background-color index="1" color="#FFFFFFFF" />
  4395. <background-color index="2" color="#FFFFFFFF" />
  4396. <background-type type="solid" />
  4397. </style>
  4398. <meta>
  4399. <authors>
  4400. <author>Dalibor Votruba</author>
  4401. </authors>
  4402. <description />
  4403. <creation-date>11/08/2022 05:11:09</creation-date>
  4404. <change-date>11/08/2022 05:15:36</change-date>
  4405. <revision-count>0</revision-count>
  4406. <version />
  4407. </meta>
  4408. <abstract-items>
  4409. <item id="7b94a4d5edb6438a82af3d9445dea2de" cid="GNR004" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:14:06" from="d0073f5bfa1e416a993d396a5c5f3719" to="44a36b903018464184f14b39c3b5c834" visibility="package" />
  4410. <item id="e40abda945f14a43b98246892d7a74d3" cid="OBJ007" type="object" name="CustomerService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:14:43" visibility="undefined">
  4411. <stereotypes>
  4412. <stereotype name="injection" />
  4413. </stereotypes>
  4414. <stereotype-instances>
  4415. <stereotype id="e40abda945f14a43b98246892d7a74d3_injection_c" type="injection" ref="" />
  4416. </stereotype-instances>
  4417. <object classifier-name="">
  4418. <attributes>
  4419. <attribute name="repository" value="RepoCustomer" />
  4420. <attribute name="repository" value="RepoContact" />
  4421. <attribute name="repository" value="RepoUser" />
  4422. <attribute name="repository" value="RepoCountry" />
  4423. <attribute name="currentContext" value="QlbrcContext" />
  4424. <attribute name="loggerFactory" value="" />
  4425. </attributes>
  4426. </object>
  4427. </item>
  4428. <item id="38831ef7eac745f7b77a0603bdef94dc" cid="ELEM011" type="universal-connector" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:15:36" from="d0073f5bfa1e416a993d396a5c5f3719" to="e40abda945f14a43b98246892d7a74d3">
  4429. <connector />
  4430. </item>
  4431. <item id="d0073f5bfa1e416a993d396a5c5f3719" cid="C006" type="class" name="CustomerService" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="11/08/2022 05:11:35" visibility="undefined">
  4432. <stereotypes>
  4433. <stereotype name="service" />
  4434. </stereotypes>
  4435. <stereotype-instances>
  4436. <stereotype id="d0073f5bfa1e416a993d396a5c5f3719_service_c" type="service" ref="" />
  4437. </stereotype-instances>
  4438. <operations>
  4439. <operation id="ob52ac7e8d33e44f2a87f9c9f82338da799" cid="OP022" name="CreateCustomer" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4440. <operation id="o02fe9df59a594bbe9442cd33c5476760792" cid="OP023" name="UpdateCustomer" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4441. <operation id="o17937f03c04046f392c75c9fc6259b6342" cid="OP024" name="DeleteCustomer" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4442. <operation id="of8675f6d83434e0e8e5341f3018bb2f0319" cid="OP025" name="GetCustomer" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4443. <operation id="obb5eefa6dd424813961581b9c0cc39c4432" cid="OP026" name="ExistsCustomer" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4444. <operation id="oa50b804e87f842cd837468fd9e517c7f553" cid="OP027" name="AssignUser" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4445. <operation id="o198a2d6a9e2144029d01835d4a38206f63" cid="OP028" name="UnAssignUser" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4446. <operation id="o44246dbb7ebb444fa102049fb2d35444120" cid="OP029" name="CreateContact" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4447. <operation id="oafe6061d1f6540919621346202228c8823" cid="OP030" name="UpdateContact" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4448. <operation id="oc7f70a2005fd447ab4dbcd7b991915e8920" cid="OP031" name="DeleteContact" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4449. <operation id="o6df7ea6552d8407483b2b253e2940eaa159" cid="OP032" name="GetContact" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4450. <operation id="o41aa9ad7f6324c6f93e15d34f8d4b371734" cid="OP033" name="GetContacts" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4451. <operation id="odcdafe7e92be4a1c877fa3ab194e4db3200" cid="OP034" name="GetPreferredContacts" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4452. <operation id="o98b0b8bac35d49109283620ccbd50217303" cid="OP035" name="ValidateContacts" creation-date="11/08/2022 05:19:35" type="" type-id="" visibility="undefined" />
  4453. </operations>
  4454. <source-codes>
  4455. <source-code language="ActionScript" />
  4456. </source-codes>
  4457. </item>
  4458. </abstract-items>
  4459. <layer id="09c8997738b04955879c2e5411f9ba43" name="Default" visible="true" enabled="true" locked="false">
  4460. <item id="d0073f5bfa1e416a993d396a5c5f3719" iid="cef02f1da9594bd7bb6b635bdce9ecc3" show-fields="true" creation-date="11/08/2022 05:11:35" order-index="0" type="entity">
  4461. <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" />
  4462. <classifier />
  4463. <class />
  4464. </item>
  4465. <item id="44a36b903018464184f14b39c3b5c834" iid="98af29cf48154f3593129acfe2480420" show-fields="true" creation-date="11/08/2022 05:12:17" order-index="1" type="entity">
  4466. <layout ax="809.4272" ay="164.3149" awidth="140" aheight="160" x="862" y="331" width="140" height="160" />
  4467. <classifier />
  4468. <class />
  4469. </item>
  4470. <item id="7b94a4d5edb6438a82af3d9445dea2de" iid="be5f502c608440c9a642ad042ae2170c" creation-date="11/08/2022 05:14:06" order-index="2" type="relation">
  4471. <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">
  4472. <points>
  4473. <point x="637" y="357" />
  4474. <point x="879" y="324" />
  4475. </points>
  4476. </layout>
  4477. <relation from="d0073f5bfa1e416a993d396a5c5f3719" from-iid="cef02f1da9594bd7bb6b635bdce9ecc3" to="44a36b903018464184f14b39c3b5c834" to-iid="98af29cf48154f3593129acfe2480420" />
  4478. </item>
  4479. <item id="e40abda945f14a43b98246892d7a74d3" iid="5d4e01b264ad4a7f84214d19aa536baa" creation-date="11/08/2022 05:14:43" order-index="3" type="entity">
  4480. <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" />
  4481. </item>
  4482. <item id="38831ef7eac745f7b77a0603bdef94dc" iid="025eb92b40944ae8a5e2dae0c244c62c" creation-date="11/08/2022 05:15:36" order-index="4" type="relation">
  4483. <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">
  4484. <points>
  4485. <point x="638" y="357" />
  4486. <point x="590" y="275" />
  4487. </points>
  4488. </layout>
  4489. <relation from="d0073f5bfa1e416a993d396a5c5f3719" from-iid="cef02f1da9594bd7bb6b635bdce9ecc3" to="e40abda945f14a43b98246892d7a74d3" to-iid="5d4e01b264ad4a7f84214d19aa536baa" />
  4490. </item>
  4491. </layer>
  4492. </diagram>
  4493. </model>
  4494. </sub-models>
  4495. </model>
  4496. <model id="pb07e49cdd83a4142817ba7a0206211b1_743854101" name="Processor" namespace="" order-index="4" expanded="true">
  4497. <meta>
  4498. <authors>
  4499. <author> </author>
  4500. </authors>
  4501. <description />
  4502. <creation-date>11/08/2022 05:08:33</creation-date>
  4503. <change-date>01/01/0001 00:00:00</change-date>
  4504. <revision-count>0</revision-count>
  4505. <version />
  4506. </meta>
  4507. <abstract-items />
  4508. <sub-models />
  4509. <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">
  4510. <style>
  4511. <background-color index="1" color="#FFFFFFFF" />
  4512. <background-color index="2" color="#FFFFFFFF" />
  4513. <background-type type="solid" />
  4514. </style>
  4515. <meta>
  4516. <authors>
  4517. <author>Dalibor Votruba</author>
  4518. </authors>
  4519. <description />
  4520. <creation-date>12/07/2022 05:19:12</creation-date>
  4521. <change-date>12/07/2022 05:38:14</change-date>
  4522. <revision-count>0</revision-count>
  4523. <version>0.0.0.1</version>
  4524. </meta>
  4525. <abstract-items>
  4526. <item id="8b29087b94bf45638ee558e40d9557a2" cid="C008" type="class" name="ProcessingWorker" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:20:14" visibility="package">
  4527. <documentations>
  4528. <doc id="10841fa5d52d4c89acb4187035c49b86">
  4529. <text>
  4530. <default>
  4531. <style font-name="Verdana" font-size="12">
  4532. <text>
  4533. <solid-brush color="#FFE6E6E6" />
  4534. </text>
  4535. </style>
  4536. </default>
  4537. <styles />
  4538. <content>
  4539. <paragraph>
  4540. <style numbering-type="None">
  4541. <numbering name="" multi-level="false">
  4542. <numbering-level type="None" level="0" format="{0}." />
  4543. </numbering>
  4544. </style>
  4545. <p>
  4546. <t>Processing </t>
  4547. </p>
  4548. <p>
  4549. <t>items </t>
  4550. </p>
  4551. <p>
  4552. <t>and </t>
  4553. </p>
  4554. <p>
  4555. <t>changes </t>
  4556. </p>
  4557. <p>
  4558. <t>status
  4559. </t>
  4560. </p>
  4561. </paragraph>
  4562. </content>
  4563. </text>
  4564. </doc>
  4565. </documentations>
  4566. <source-codes>
  4567. <source-code language="ActionScript" />
  4568. </source-codes>
  4569. </item>
  4570. <item id="cc386eb15db74f10b73070cf12b705c3" cid="C015" type="class" name="ExecutingWorker" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:31:25" visibility="package">
  4571. <documentations>
  4572. <doc id="c3060d3b5a174a57a4e669381dfa156d">
  4573. <text>
  4574. <default>
  4575. <style font-name="Verdana" font-size="12">
  4576. <text>
  4577. <solid-brush color="#FFE6E6E6" />
  4578. </text>
  4579. </style>
  4580. </default>
  4581. <styles />
  4582. <content>
  4583. <paragraph>
  4584. <style numbering-type="None">
  4585. <numbering name="" multi-level="false">
  4586. <numbering-level type="None" level="0" format="{0}." />
  4587. </numbering>
  4588. </style>
  4589. <p>
  4590. <t>Executes </t>
  4591. </p>
  4592. <p>
  4593. <t>items
  4594. </t>
  4595. </p>
  4596. </paragraph>
  4597. </content>
  4598. </text>
  4599. </doc>
  4600. </documentations>
  4601. <source-codes>
  4602. <source-code language="ActionScript" />
  4603. </source-codes>
  4604. </item>
  4605. <item id="87a4070a7efd4a7cacc0ffe79be90c37" cid="CNT003" type="containment" name="Processings" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:36:48" from="8b29087b94bf45638ee558e40d9557a2" to="c4696775bd4e4f9598ebc727b45f61de">
  4606. <stereotypes>
  4607. <stereotype name="holds" />
  4608. </stereotypes>
  4609. <stereotype-instances>
  4610. <stereotype id="87a4070a7efd4a7cacc0ffe79be90c37_holds_c" type="holds" ref="" />
  4611. </stereotype-instances>
  4612. </item>
  4613. <item id="d67f53c5ca1447debb3f73a7e49e3df0" cid="GNR013" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:32:05" from="cc386eb15db74f10b73070cf12b705c3" to="d377c2fa19bc467cbe34ff3f15c549a3" visibility="package" />
  4614. <item id="00b50fb61c9e483f8ebfe983b59431f5" cid="CNT004" type="containment" name="Garbages" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:36:56" from="f21f229a93cf43959ff951a632606fb4" to="c4696775bd4e4f9598ebc727b45f61de">
  4615. <stereotypes>
  4616. <stereotype name="holds" />
  4617. </stereotypes>
  4618. <stereotype-instances>
  4619. <stereotype id="00b50fb61c9e483f8ebfe983b59431f5_holds_c" type="holds" ref="" />
  4620. </stereotype-instances>
  4621. </item>
  4622. <item id="f3480c4b3be44b868533cadc5482ecf7" cid="GNR010" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:26:42" from="f21f229a93cf43959ff951a632606fb4" to="d377c2fa19bc467cbe34ff3f15c549a3" visibility="package" />
  4623. <item id="22e1fbb433fb482b952d4a8f0bca33ca" cid="GNR014" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:38:14" from="c4696775bd4e4f9598ebc727b45f61de" to="d377c2fa19bc467cbe34ff3f15c549a3" visibility="package" />
  4624. <item id="8f2fdc4eac3347c6aef041212c87450f" cid="CNT002" type="containment" name="Executings" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:36:39" from="cc386eb15db74f10b73070cf12b705c3" to="c4696775bd4e4f9598ebc727b45f61de">
  4625. <stereotypes>
  4626. <stereotype name="holds" />
  4627. </stereotypes>
  4628. <stereotype-instances>
  4629. <stereotype id="8f2fdc4eac3347c6aef041212c87450f_holds_c" type="holds" ref="" />
  4630. </stereotype-instances>
  4631. </item>
  4632. <item id="c4696775bd4e4f9598ebc727b45f61de" cid="C016" type="class" name="ComplexWorker" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:36:04" visibility="public">
  4633. <documentations>
  4634. <doc id="f097e817988349f9b69e6c44df3e6c19">
  4635. <text>
  4636. <default>
  4637. <style font-name="Verdana" font-size="12">
  4638. <text>
  4639. <solid-brush color="#FFE6E6E6" />
  4640. </text>
  4641. </style>
  4642. </default>
  4643. <styles />
  4644. <content>
  4645. <paragraph>
  4646. <style numbering-type="None">
  4647. <numbering name="" multi-level="false">
  4648. <numbering-level type="None" level="0" format="{0}." />
  4649. </numbering>
  4650. </style>
  4651. <p>
  4652. <t>Holds </t>
  4653. </p>
  4654. <p>
  4655. <t>complex </t>
  4656. </p>
  4657. <p>
  4658. <t>of </t>
  4659. </p>
  4660. <p>
  4661. <t>workers </t>
  4662. </p>
  4663. <p>
  4664. <t>that </t>
  4665. </p>
  4666. <p>
  4667. <t>works </t>
  4668. </p>
  4669. <p>
  4670. <t>together </t>
  4671. </p>
  4672. <p>
  4673. <t>as </t>
  4674. </p>
  4675. <p>
  4676. <t>complex </t>
  4677. </p>
  4678. <p>
  4679. <t>worker
  4680. </t>
  4681. </p>
  4682. </paragraph>
  4683. </content>
  4684. </text>
  4685. </doc>
  4686. </documentations>
  4687. <source-codes>
  4688. <source-code language="ActionScript" />
  4689. </source-codes>
  4690. </item>
  4691. <item id="561f132758b34694baf9ea6c8981d7e2" cid="CNT005" type="containment" name="Retentions" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:37:04" from="77b9473d5f6e4f7cb2d1f69a09b8f7b5" to="c4696775bd4e4f9598ebc727b45f61de">
  4692. <stereotypes>
  4693. <stereotype name="holds" />
  4694. </stereotypes>
  4695. <stereotype-instances>
  4696. <stereotype id="561f132758b34694baf9ea6c8981d7e2_holds_c" type="holds" ref="" />
  4697. </stereotype-instances>
  4698. </item>
  4699. <item id="77b9473d5f6e4f7cb2d1f69a09b8f7b5" cid="C010" type="class" name="RetentionWorker" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:20:39" visibility="package">
  4700. <documentations>
  4701. <doc id="831adba3e8d74ed08bb958b9b122fad3">
  4702. <text>
  4703. <default>
  4704. <style font-name="Verdana" font-size="12">
  4705. <text>
  4706. <solid-brush color="#FFE6E6E6" />
  4707. </text>
  4708. </style>
  4709. </default>
  4710. <styles />
  4711. <content>
  4712. <paragraph>
  4713. <style numbering-type="None">
  4714. <numbering name="" multi-level="false">
  4715. <numbering-level type="None" level="0" format="{0}." />
  4716. </numbering>
  4717. </style>
  4718. <p>
  4719. <t>Flagging </t>
  4720. </p>
  4721. <p>
  4722. <t>deleted </t>
  4723. </p>
  4724. <p>
  4725. <t>items </t>
  4726. </p>
  4727. <p>
  4728. <t>and </t>
  4729. </p>
  4730. <p>
  4731. <t>set </t>
  4732. </p>
  4733. <p>
  4734. <t>items </t>
  4735. </p>
  4736. <p>
  4737. <t>expirations
  4738. </t>
  4739. </p>
  4740. </paragraph>
  4741. </content>
  4742. </text>
  4743. </doc>
  4744. </documentations>
  4745. <source-codes>
  4746. <source-code language="ActionScript" />
  4747. </source-codes>
  4748. </item>
  4749. <item id="4b3186229a4641c69b39c83959610694" cid="GNR011" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:27:01" from="77b9473d5f6e4f7cb2d1f69a09b8f7b5" to="d377c2fa19bc467cbe34ff3f15c549a3" visibility="package" />
  4750. <item id="b028915e74d34090a5397b0990abeeb7" cid="GNR009" type="generalization" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:26:32" from="8b29087b94bf45638ee558e40d9557a2" to="d377c2fa19bc467cbe34ff3f15c549a3" visibility="package" />
  4751. <item id="f21f229a93cf43959ff951a632606fb4" cid="C009" type="class" name="GarbageWorker" creator="CDoZfQE0eoPT0twKUywpA1ytAerZlrAks6wQJtSziyhd5T57" creation-date="12/07/2022 05:20:27" visibility="package">
  4752. <documentations>
  4753. <doc id="ac518111f8974e97ab679f3bf69e8eee">
  4754. <text>
  4755. <default>
  4756. <style font-name="Verdana" font-size="12">
  4757. <text>
  4758. <solid-brush color="#FFE6E6E6" />
  4759. </text>
  4760. </style>
  4761. </default>
  4762. <styles />
  4763. <content>
  4764. <paragraph>
  4765. <style numbering-type="None">
  4766. <numbering name="" multi-level="false">
  4767. <numbering-level type="None" level="0" format="{0}." />
  4768. </numbering>
  4769. </style>
  4770. <p>
  4771. <t>Physically </t>
  4772. </p>
  4773. <p>
  4774. <t>deletes </t>
  4775. </p>
  4776. <p>
  4777. <t>items
  4778. </t>
  4779. </p>
  4780. </paragraph>
  4781. </content>
  4782. </text>
  4783. </doc>
  4784. </documentations>
  4785. <source-codes>
  4786. <source-code language="ActionScript" />
  4787. </source-codes>
  4788. </item>
  4789. </abstract-items>
  4790. <layer id="bac8a598a6ad4beab99faa505b3e0174" name="Default" visible="true" enabled="true" locked="false">
  4791. <item id="8b29087b94bf45638ee558e40d9557a2" iid="719b10c594d54e349291bf5a37b362a1" show-fields="true" creation-date="12/07/2022 05:20:14" order-index="0" type="entity">
  4792. <layout ax="324" ay="196" awidth="140" aheight="160" x="324" y="196" width="140" height="160" />
  4793. <classifier />
  4794. <class />
  4795. </item>
  4796. <item id="f21f229a93cf43959ff951a632606fb4" iid="eb612d43148f4eb8822eacbbea082946" show-fields="true" creation-date="12/07/2022 05:20:27" order-index="1" type="entity">
  4797. <layout ax="588" ay="196" awidth="140" aheight="160" x="588" y="196" width="140" height="160" />
  4798. <classifier />
  4799. <class />
  4800. </item>
  4801. <item id="77b9473d5f6e4f7cb2d1f69a09b8f7b5" iid="922f8ff02e1049c6b0be4ed382467f82" show-fields="true" creation-date="12/07/2022 05:20:39" order-index="2" type="entity">
  4802. <layout ax="852" ay="196" awidth="140" aheight="160" x="852" y="196" width="140" height="160" />
  4803. <classifier />
  4804. <class />
  4805. </item>
  4806. <item id="d377c2fa19bc467cbe34ff3f15c549a3" iid="87f252a57229403092943f80bece1a1f" show-fields="true" creation-date="12/07/2022 05:23:58" order-index="7" type="entity">
  4807. <layout ax="267" ay="629" awidth="140" aheight="160" x="267" y="629" width="140" height="160" />
  4808. <classifier />
  4809. <class />
  4810. </item>
  4811. <item id="b028915e74d34090a5397b0990abeeb7" iid="7f3f5364e6c14bd09e20d5657d188fee" creation-date="12/07/2022 05:26:32" order-index="8" type="relation">
  4812. <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">
  4813. <points>
  4814. <point x="394" y="356" />
  4815. <point x="337" y="629" />
  4816. </points>
  4817. </layout>
  4818. <relation from="8b29087b94bf45638ee558e40d9557a2" from-iid="719b10c594d54e349291bf5a37b362a1" to="d377c2fa19bc467cbe34ff3f15c549a3" to-iid="87f252a57229403092943f80bece1a1f" />
  4819. </item>
  4820. <item id="f3480c4b3be44b868533cadc5482ecf7" iid="bd2371d1d82142978f6a5adf1c524a06" creation-date="12/07/2022 05:26:42" order-index="9" type="relation">
  4821. <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">
  4822. <points>
  4823. <point x="658" y="356" />
  4824. <point x="337" y="629" />
  4825. </points>
  4826. </layout>
  4827. <relation from="f21f229a93cf43959ff951a632606fb4" from-iid="eb612d43148f4eb8822eacbbea082946" to="d377c2fa19bc467cbe34ff3f15c549a3" to-iid="87f252a57229403092943f80bece1a1f" />
  4828. </item>
  4829. <item id="4b3186229a4641c69b39c83959610694" iid="c78ede720b744852a9ff8e4c4af80cb6" creation-date="12/07/2022 05:27:01" order-index="10" type="relation">
  4830. <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">
  4831. <points>
  4832. <point x="922" y="356" />
  4833. <point x="337" y="629" />
  4834. </points>
  4835. </layout>
  4836. <relation from="77b9473d5f6e4f7cb2d1f69a09b8f7b5" from-iid="922f8ff02e1049c6b0be4ed382467f82" to="d377c2fa19bc467cbe34ff3f15c549a3" to-iid="87f252a57229403092943f80bece1a1f" />
  4837. </item>
  4838. <item id="cc386eb15db74f10b73070cf12b705c3" iid="b14f58981ca0473b98ba1c265593328e" show-fields="true" creation-date="12/07/2022 05:31:25" order-index="11" type="entity">
  4839. <layout ax="113" ay="196" awidth="140" aheight="160" x="113" y="196" width="140" height="160" />
  4840. <classifier />
  4841. <class />
  4842. </item>
  4843. <item id="d67f53c5ca1447debb3f73a7e49e3df0" iid="e4aa7012a86b4ba085a8343bb695207e" creation-date="12/07/2022 05:32:05" order-index="12" type="relation">
  4844. <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">
  4845. <points>
  4846. <point x="183" y="356" />
  4847. <point x="337" y="629" />
  4848. </points>
  4849. </layout>
  4850. <relation from="cc386eb15db74f10b73070cf12b705c3" from-iid="b14f58981ca0473b98ba1c265593328e" to="d377c2fa19bc467cbe34ff3f15c549a3" to-iid="87f252a57229403092943f80bece1a1f" />
  4851. </item>
  4852. <item id="c4696775bd4e4f9598ebc727b45f61de" iid="4cceea159df2411aa225e40899d73ea9" show-fields="true" creation-date="12/07/2022 05:36:04" order-index="13" type="entity">
  4853. <layout ax="933" ay="612.584" awidth="140" aheight="160" x="933" y="612.584" width="140" height="160" />
  4854. <classifier />
  4855. <class />
  4856. </item>
  4857. <item id="8f2fdc4eac3347c6aef041212c87450f" iid="37aedd029782427397ae9d6fd73beb8f" creation-date="12/07/2022 05:36:39" order-index="14" type="relation">
  4858. <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">
  4859. <points>
  4860. <point x="253" y="276" />
  4861. <point x="486.5" y="470" />
  4862. <point x="933" y="693" />
  4863. </points>
  4864. </layout>
  4865. <relation from="cc386eb15db74f10b73070cf12b705c3" from-iid="b14f58981ca0473b98ba1c265593328e" to="c4696775bd4e4f9598ebc727b45f61de" to-iid="4cceea159df2411aa225e40899d73ea9" />
  4866. </item>
  4867. <item id="87a4070a7efd4a7cacc0ffe79be90c37" iid="6ebb3320e41c452da26ac78ef5e1ea26" creation-date="12/07/2022 05:36:48" order-index="15" type="relation">
  4868. <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">
  4869. <points>
  4870. <point x="464" y="276" />
  4871. <point x="587" y="418" />
  4872. <point x="933" y="693" />
  4873. </points>
  4874. </layout>
  4875. <relation from="8b29087b94bf45638ee558e40d9557a2" from-iid="719b10c594d54e349291bf5a37b362a1" to="c4696775bd4e4f9598ebc727b45f61de" to-iid="4cceea159df2411aa225e40899d73ea9" />
  4876. </item>
  4877. <item id="00b50fb61c9e483f8ebfe983b59431f5" iid="b066fd42032d42c189e34deafca116cc" creation-date="12/07/2022 05:36:56" order-index="16" type="relation">
  4878. <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">
  4879. <points>
  4880. <point x="658" y="356" />
  4881. <point x="933" y="693" />
  4882. </points>
  4883. </layout>
  4884. <relation from="f21f229a93cf43959ff951a632606fb4" from-iid="eb612d43148f4eb8822eacbbea082946" to="c4696775bd4e4f9598ebc727b45f61de" to-iid="4cceea159df2411aa225e40899d73ea9" />
  4885. </item>
  4886. <item id="561f132758b34694baf9ea6c8981d7e2" iid="ef38513b12a04b438af8fafefa2461ee" creation-date="12/07/2022 05:37:04" order-index="17" type="relation">
  4887. <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">
  4888. <points>
  4889. <point x="922" y="356" />
  4890. <point x="933" y="693" />
  4891. </points>
  4892. </layout>
  4893. <relation from="77b9473d5f6e4f7cb2d1f69a09b8f7b5" from-iid="922f8ff02e1049c6b0be4ed382467f82" to="c4696775bd4e4f9598ebc727b45f61de" to-iid="4cceea159df2411aa225e40899d73ea9" />
  4894. </item>
  4895. <item id="22e1fbb433fb482b952d4a8f0bca33ca" iid="847a5c7aafcc40f7b728e5a833268cd2" creation-date="12/07/2022 05:38:14" order-index="18" type="relation">
  4896. <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">
  4897. <points>
  4898. <point x="933" y="693" />
  4899. <point x="407" y="709" />
  4900. </points>
  4901. </layout>
  4902. <relation from="c4696775bd4e4f9598ebc727b45f61de" from-iid="4cceea159df2411aa225e40899d73ea9" to="d377c2fa19bc467cbe34ff3f15c549a3" to-iid="87f252a57229403092943f80bece1a1f" />
  4903. </item>
  4904. </layer>
  4905. </diagram>
  4906. </model>
  4907. <model id="p1bdc329415a849049d99e36009b83f36_450692072" name="Notification" namespace="" order-index="5">
  4908. <meta>
  4909. <authors>
  4910. <author>Dalibor Votruba</author>
  4911. </authors>
  4912. <description />
  4913. <creation-date>11/08/2022 05:10:27</creation-date>
  4914. <change-date>01/01/0001 00:00:00</change-date>
  4915. <revision-count>0</revision-count>
  4916. <version />
  4917. </meta>
  4918. <abstract-items />
  4919. <sub-models />
  4920. </model>
  4921. </sub-models>
  4922. </model>
  4923. </sub-models>
  4924. </model>
  4925. </models>
  4926. </sim-project>