ContractReport.Designer.cs 129 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764
  1. namespace MTWorkHR.Infrastructure.Reports
  2. {
  3. partial class ContractReport
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. DevExpress.DataAccess.Sql.SelectQuery selectQuery1 = new DevExpress.DataAccess.Sql.SelectQuery();
  30. DevExpress.DataAccess.Sql.Column column1 = new DevExpress.DataAccess.Sql.Column();
  31. DevExpress.DataAccess.Sql.ColumnExpression columnExpression1 = new DevExpress.DataAccess.Sql.ColumnExpression();
  32. DevExpress.DataAccess.Sql.Table table1 = new DevExpress.DataAccess.Sql.Table();
  33. DevExpress.DataAccess.Sql.Column column2 = new DevExpress.DataAccess.Sql.Column();
  34. DevExpress.DataAccess.Sql.ColumnExpression columnExpression2 = new DevExpress.DataAccess.Sql.ColumnExpression();
  35. DevExpress.DataAccess.Sql.Column column3 = new DevExpress.DataAccess.Sql.Column();
  36. DevExpress.DataAccess.Sql.ColumnExpression columnExpression3 = new DevExpress.DataAccess.Sql.ColumnExpression();
  37. DevExpress.DataAccess.Sql.Column column4 = new DevExpress.DataAccess.Sql.Column();
  38. DevExpress.DataAccess.Sql.ColumnExpression columnExpression4 = new DevExpress.DataAccess.Sql.ColumnExpression();
  39. DevExpress.DataAccess.Sql.Table table2 = new DevExpress.DataAccess.Sql.Table();
  40. DevExpress.DataAccess.Sql.Column column5 = new DevExpress.DataAccess.Sql.Column();
  41. DevExpress.DataAccess.Sql.ColumnExpression columnExpression5 = new DevExpress.DataAccess.Sql.ColumnExpression();
  42. DevExpress.DataAccess.Sql.Column column6 = new DevExpress.DataAccess.Sql.Column();
  43. DevExpress.DataAccess.Sql.ColumnExpression columnExpression6 = new DevExpress.DataAccess.Sql.ColumnExpression();
  44. DevExpress.DataAccess.Sql.Column column7 = new DevExpress.DataAccess.Sql.Column();
  45. DevExpress.DataAccess.Sql.ColumnExpression columnExpression7 = new DevExpress.DataAccess.Sql.ColumnExpression();
  46. DevExpress.DataAccess.Sql.Table table3 = new DevExpress.DataAccess.Sql.Table();
  47. DevExpress.DataAccess.Sql.Column column8 = new DevExpress.DataAccess.Sql.Column();
  48. DevExpress.DataAccess.Sql.ColumnExpression columnExpression8 = new DevExpress.DataAccess.Sql.ColumnExpression();
  49. DevExpress.DataAccess.Sql.Column column9 = new DevExpress.DataAccess.Sql.Column();
  50. DevExpress.DataAccess.Sql.ColumnExpression columnExpression9 = new DevExpress.DataAccess.Sql.ColumnExpression();
  51. DevExpress.DataAccess.Sql.Column column10 = new DevExpress.DataAccess.Sql.Column();
  52. DevExpress.DataAccess.Sql.ColumnExpression columnExpression10 = new DevExpress.DataAccess.Sql.ColumnExpression();
  53. DevExpress.DataAccess.Sql.Column column11 = new DevExpress.DataAccess.Sql.Column();
  54. DevExpress.DataAccess.Sql.ColumnExpression columnExpression11 = new DevExpress.DataAccess.Sql.ColumnExpression();
  55. DevExpress.DataAccess.Sql.Column column12 = new DevExpress.DataAccess.Sql.Column();
  56. DevExpress.DataAccess.Sql.ColumnExpression columnExpression12 = new DevExpress.DataAccess.Sql.ColumnExpression();
  57. DevExpress.DataAccess.Sql.Column column13 = new DevExpress.DataAccess.Sql.Column();
  58. DevExpress.DataAccess.Sql.ColumnExpression columnExpression13 = new DevExpress.DataAccess.Sql.ColumnExpression();
  59. DevExpress.DataAccess.Sql.Column column14 = new DevExpress.DataAccess.Sql.Column();
  60. DevExpress.DataAccess.Sql.ColumnExpression columnExpression14 = new DevExpress.DataAccess.Sql.ColumnExpression();
  61. DevExpress.DataAccess.Sql.Column column15 = new DevExpress.DataAccess.Sql.Column();
  62. DevExpress.DataAccess.Sql.ColumnExpression columnExpression15 = new DevExpress.DataAccess.Sql.ColumnExpression();
  63. DevExpress.DataAccess.Sql.Column column16 = new DevExpress.DataAccess.Sql.Column();
  64. DevExpress.DataAccess.Sql.ColumnExpression columnExpression16 = new DevExpress.DataAccess.Sql.ColumnExpression();
  65. DevExpress.DataAccess.Sql.Column column17 = new DevExpress.DataAccess.Sql.Column();
  66. DevExpress.DataAccess.Sql.ColumnExpression columnExpression17 = new DevExpress.DataAccess.Sql.ColumnExpression();
  67. DevExpress.DataAccess.Sql.Column column18 = new DevExpress.DataAccess.Sql.Column();
  68. DevExpress.DataAccess.Sql.ColumnExpression columnExpression18 = new DevExpress.DataAccess.Sql.ColumnExpression();
  69. DevExpress.DataAccess.Sql.Column column19 = new DevExpress.DataAccess.Sql.Column();
  70. DevExpress.DataAccess.Sql.ColumnExpression columnExpression19 = new DevExpress.DataAccess.Sql.ColumnExpression();
  71. DevExpress.DataAccess.Sql.Column column20 = new DevExpress.DataAccess.Sql.Column();
  72. DevExpress.DataAccess.Sql.ColumnExpression columnExpression20 = new DevExpress.DataAccess.Sql.ColumnExpression();
  73. DevExpress.DataAccess.Sql.Column column21 = new DevExpress.DataAccess.Sql.Column();
  74. DevExpress.DataAccess.Sql.ColumnExpression columnExpression21 = new DevExpress.DataAccess.Sql.ColumnExpression();
  75. DevExpress.DataAccess.Sql.Column column22 = new DevExpress.DataAccess.Sql.Column();
  76. DevExpress.DataAccess.Sql.ColumnExpression columnExpression22 = new DevExpress.DataAccess.Sql.ColumnExpression();
  77. DevExpress.DataAccess.Sql.Table table4 = new DevExpress.DataAccess.Sql.Table();
  78. DevExpress.DataAccess.Sql.Column column23 = new DevExpress.DataAccess.Sql.Column();
  79. DevExpress.DataAccess.Sql.ColumnExpression columnExpression23 = new DevExpress.DataAccess.Sql.ColumnExpression();
  80. DevExpress.DataAccess.Sql.Column column24 = new DevExpress.DataAccess.Sql.Column();
  81. DevExpress.DataAccess.Sql.ColumnExpression columnExpression24 = new DevExpress.DataAccess.Sql.ColumnExpression();
  82. DevExpress.DataAccess.Sql.Column column25 = new DevExpress.DataAccess.Sql.Column();
  83. DevExpress.DataAccess.Sql.ColumnExpression columnExpression25 = new DevExpress.DataAccess.Sql.ColumnExpression();
  84. DevExpress.DataAccess.Sql.Column column26 = new DevExpress.DataAccess.Sql.Column();
  85. DevExpress.DataAccess.Sql.ColumnExpression columnExpression26 = new DevExpress.DataAccess.Sql.ColumnExpression();
  86. DevExpress.DataAccess.Sql.Column column27 = new DevExpress.DataAccess.Sql.Column();
  87. DevExpress.DataAccess.Sql.ColumnExpression columnExpression27 = new DevExpress.DataAccess.Sql.ColumnExpression();
  88. DevExpress.DataAccess.Sql.Column column28 = new DevExpress.DataAccess.Sql.Column();
  89. DevExpress.DataAccess.Sql.ColumnExpression columnExpression28 = new DevExpress.DataAccess.Sql.ColumnExpression();
  90. DevExpress.DataAccess.Sql.Column column29 = new DevExpress.DataAccess.Sql.Column();
  91. DevExpress.DataAccess.Sql.ColumnExpression columnExpression29 = new DevExpress.DataAccess.Sql.ColumnExpression();
  92. DevExpress.DataAccess.Sql.Column column30 = new DevExpress.DataAccess.Sql.Column();
  93. DevExpress.DataAccess.Sql.ColumnExpression columnExpression30 = new DevExpress.DataAccess.Sql.ColumnExpression();
  94. DevExpress.DataAccess.Sql.Column column31 = new DevExpress.DataAccess.Sql.Column();
  95. DevExpress.DataAccess.Sql.ColumnExpression columnExpression31 = new DevExpress.DataAccess.Sql.ColumnExpression();
  96. DevExpress.DataAccess.Sql.Column column32 = new DevExpress.DataAccess.Sql.Column();
  97. DevExpress.DataAccess.Sql.ColumnExpression columnExpression32 = new DevExpress.DataAccess.Sql.ColumnExpression();
  98. DevExpress.DataAccess.Sql.Table table5 = new DevExpress.DataAccess.Sql.Table();
  99. DevExpress.DataAccess.Sql.Column column33 = new DevExpress.DataAccess.Sql.Column();
  100. DevExpress.DataAccess.Sql.ColumnExpression columnExpression33 = new DevExpress.DataAccess.Sql.ColumnExpression();
  101. DevExpress.DataAccess.Sql.Table table6 = new DevExpress.DataAccess.Sql.Table();
  102. DevExpress.DataAccess.Sql.Column column34 = new DevExpress.DataAccess.Sql.Column();
  103. DevExpress.DataAccess.Sql.ColumnExpression columnExpression34 = new DevExpress.DataAccess.Sql.ColumnExpression();
  104. DevExpress.DataAccess.Sql.Table table7 = new DevExpress.DataAccess.Sql.Table();
  105. DevExpress.DataAccess.Sql.Column column35 = new DevExpress.DataAccess.Sql.Column();
  106. DevExpress.DataAccess.Sql.ColumnExpression columnExpression35 = new DevExpress.DataAccess.Sql.ColumnExpression();
  107. DevExpress.DataAccess.Sql.Column column36 = new DevExpress.DataAccess.Sql.Column();
  108. DevExpress.DataAccess.Sql.ColumnExpression columnExpression36 = new DevExpress.DataAccess.Sql.ColumnExpression();
  109. DevExpress.DataAccess.Sql.Column column37 = new DevExpress.DataAccess.Sql.Column();
  110. DevExpress.DataAccess.Sql.ColumnExpression columnExpression37 = new DevExpress.DataAccess.Sql.ColumnExpression();
  111. DevExpress.DataAccess.Sql.Column column38 = new DevExpress.DataAccess.Sql.Column();
  112. DevExpress.DataAccess.Sql.ColumnExpression columnExpression38 = new DevExpress.DataAccess.Sql.ColumnExpression();
  113. DevExpress.DataAccess.Sql.Column column39 = new DevExpress.DataAccess.Sql.Column();
  114. DevExpress.DataAccess.Sql.ColumnExpression columnExpression39 = new DevExpress.DataAccess.Sql.ColumnExpression();
  115. DevExpress.DataAccess.Sql.Column column40 = new DevExpress.DataAccess.Sql.Column();
  116. DevExpress.DataAccess.Sql.ColumnExpression columnExpression40 = new DevExpress.DataAccess.Sql.ColumnExpression();
  117. DevExpress.DataAccess.Sql.Column column41 = new DevExpress.DataAccess.Sql.Column();
  118. DevExpress.DataAccess.Sql.ColumnExpression columnExpression41 = new DevExpress.DataAccess.Sql.ColumnExpression();
  119. DevExpress.DataAccess.Sql.Column column42 = new DevExpress.DataAccess.Sql.Column();
  120. DevExpress.DataAccess.Sql.ColumnExpression columnExpression42 = new DevExpress.DataAccess.Sql.ColumnExpression();
  121. DevExpress.DataAccess.Sql.Table table8 = new DevExpress.DataAccess.Sql.Table();
  122. DevExpress.DataAccess.Sql.Column column43 = new DevExpress.DataAccess.Sql.Column();
  123. DevExpress.DataAccess.Sql.ColumnExpression columnExpression43 = new DevExpress.DataAccess.Sql.ColumnExpression();
  124. DevExpress.DataAccess.Sql.Column column44 = new DevExpress.DataAccess.Sql.Column();
  125. DevExpress.DataAccess.Sql.ColumnExpression columnExpression44 = new DevExpress.DataAccess.Sql.ColumnExpression();
  126. DevExpress.DataAccess.Sql.Column column45 = new DevExpress.DataAccess.Sql.Column();
  127. DevExpress.DataAccess.Sql.ColumnExpression columnExpression45 = new DevExpress.DataAccess.Sql.ColumnExpression();
  128. DevExpress.DataAccess.Sql.Column column46 = new DevExpress.DataAccess.Sql.Column();
  129. DevExpress.DataAccess.Sql.ColumnExpression columnExpression46 = new DevExpress.DataAccess.Sql.ColumnExpression();
  130. DevExpress.DataAccess.Sql.Column column47 = new DevExpress.DataAccess.Sql.Column();
  131. DevExpress.DataAccess.Sql.ColumnExpression columnExpression47 = new DevExpress.DataAccess.Sql.ColumnExpression();
  132. DevExpress.DataAccess.Sql.Column column48 = new DevExpress.DataAccess.Sql.Column();
  133. DevExpress.DataAccess.Sql.ColumnExpression columnExpression48 = new DevExpress.DataAccess.Sql.ColumnExpression();
  134. DevExpress.DataAccess.Sql.Column column49 = new DevExpress.DataAccess.Sql.Column();
  135. DevExpress.DataAccess.Sql.ColumnExpression columnExpression49 = new DevExpress.DataAccess.Sql.ColumnExpression();
  136. DevExpress.DataAccess.Sql.Column column50 = new DevExpress.DataAccess.Sql.Column();
  137. DevExpress.DataAccess.Sql.ColumnExpression columnExpression50 = new DevExpress.DataAccess.Sql.ColumnExpression();
  138. DevExpress.DataAccess.Sql.Column column51 = new DevExpress.DataAccess.Sql.Column();
  139. DevExpress.DataAccess.Sql.ColumnExpression columnExpression51 = new DevExpress.DataAccess.Sql.ColumnExpression();
  140. DevExpress.DataAccess.Sql.Table table9 = new DevExpress.DataAccess.Sql.Table();
  141. DevExpress.DataAccess.Sql.Column column52 = new DevExpress.DataAccess.Sql.Column();
  142. DevExpress.DataAccess.Sql.ColumnExpression columnExpression52 = new DevExpress.DataAccess.Sql.ColumnExpression();
  143. DevExpress.DataAccess.Sql.QueryParameter queryParameter1 = new DevExpress.DataAccess.Sql.QueryParameter();
  144. DevExpress.DataAccess.Sql.Join join1 = new DevExpress.DataAccess.Sql.Join();
  145. DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo1 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
  146. DevExpress.DataAccess.Sql.Join join2 = new DevExpress.DataAccess.Sql.Join();
  147. DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo2 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
  148. DevExpress.DataAccess.Sql.Join join3 = new DevExpress.DataAccess.Sql.Join();
  149. DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo3 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
  150. DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo4 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
  151. DevExpress.DataAccess.Sql.Join join4 = new DevExpress.DataAccess.Sql.Join();
  152. DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo5 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
  153. DevExpress.DataAccess.Sql.Join join5 = new DevExpress.DataAccess.Sql.Join();
  154. DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo6 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
  155. DevExpress.DataAccess.Sql.Join join6 = new DevExpress.DataAccess.Sql.Join();
  156. DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo7 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
  157. DevExpress.DataAccess.Sql.Join join7 = new DevExpress.DataAccess.Sql.Join();
  158. DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo8 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
  159. DevExpress.DataAccess.Sql.Join join8 = new DevExpress.DataAccess.Sql.Join();
  160. DevExpress.DataAccess.Sql.RelationColumnInfo relationColumnInfo9 = new DevExpress.DataAccess.Sql.RelationColumnInfo();
  161. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ContractReport));
  162. this.TopMargin = new DevExpress.XtraReports.UI.TopMarginBand();
  163. this.xrLabel3 = new DevExpress.XtraReports.UI.XRLabel();
  164. this.xrLabel8 = new DevExpress.XtraReports.UI.XRLabel();
  165. this.BottomMargin = new DevExpress.XtraReports.UI.BottomMarginBand();
  166. this.Detail = new DevExpress.XtraReports.UI.DetailBand();
  167. this.xrLabel79 = new DevExpress.XtraReports.UI.XRLabel();
  168. this.xrLabel78 = new DevExpress.XtraReports.UI.XRLabel();
  169. this.xrLabel77 = new DevExpress.XtraReports.UI.XRLabel();
  170. this.xrLabel76 = new DevExpress.XtraReports.UI.XRLabel();
  171. this.xrLabel75 = new DevExpress.XtraReports.UI.XRLabel();
  172. this.xrLabel74 = new DevExpress.XtraReports.UI.XRLabel();
  173. this.xrLabel73 = new DevExpress.XtraReports.UI.XRLabel();
  174. this.xrLabel72 = new DevExpress.XtraReports.UI.XRLabel();
  175. this.xrLabel71 = new DevExpress.XtraReports.UI.XRLabel();
  176. this.xrLabel70 = new DevExpress.XtraReports.UI.XRLabel();
  177. this.xrLabel69 = new DevExpress.XtraReports.UI.XRLabel();
  178. this.xrLabel68 = new DevExpress.XtraReports.UI.XRLabel();
  179. this.xrLabel67 = new DevExpress.XtraReports.UI.XRLabel();
  180. this.xrLabel66 = new DevExpress.XtraReports.UI.XRLabel();
  181. this.xrLabel62 = new DevExpress.XtraReports.UI.XRLabel();
  182. this.xrLabel63 = new DevExpress.XtraReports.UI.XRLabel();
  183. this.xrLabel64 = new DevExpress.XtraReports.UI.XRLabel();
  184. this.xrLabel65 = new DevExpress.XtraReports.UI.XRLabel();
  185. this.xrLabel61 = new DevExpress.XtraReports.UI.XRLabel();
  186. this.xrSubreport1 = new DevExpress.XtraReports.UI.XRSubreport();
  187. this.ContractId = new DevExpress.XtraReports.Parameters.Parameter();
  188. this.xrLabel60 = new DevExpress.XtraReports.UI.XRLabel();
  189. this.xrLabel59 = new DevExpress.XtraReports.UI.XRLabel();
  190. this.xrLabel58 = new DevExpress.XtraReports.UI.XRLabel();
  191. this.xrLabel57 = new DevExpress.XtraReports.UI.XRLabel();
  192. this.xrLabel56 = new DevExpress.XtraReports.UI.XRLabel();
  193. this.xrLabel55 = new DevExpress.XtraReports.UI.XRLabel();
  194. this.xrLabel54 = new DevExpress.XtraReports.UI.XRLabel();
  195. this.xrLabel53 = new DevExpress.XtraReports.UI.XRLabel();
  196. this.xrLabel52 = new DevExpress.XtraReports.UI.XRLabel();
  197. this.xrLabel51 = new DevExpress.XtraReports.UI.XRLabel();
  198. this.xrLabel50 = new DevExpress.XtraReports.UI.XRLabel();
  199. this.xrLabel49 = new DevExpress.XtraReports.UI.XRLabel();
  200. this.xrLabel48 = new DevExpress.XtraReports.UI.XRLabel();
  201. this.xrLabel47 = new DevExpress.XtraReports.UI.XRLabel();
  202. this.xrLabel46 = new DevExpress.XtraReports.UI.XRLabel();
  203. this.xrLabel45 = new DevExpress.XtraReports.UI.XRLabel();
  204. this.xrLabel44 = new DevExpress.XtraReports.UI.XRLabel();
  205. this.xrLabel43 = new DevExpress.XtraReports.UI.XRLabel();
  206. this.xrLabel42 = new DevExpress.XtraReports.UI.XRLabel();
  207. this.xrLabel41 = new DevExpress.XtraReports.UI.XRLabel();
  208. this.xrLabel40 = new DevExpress.XtraReports.UI.XRLabel();
  209. this.xrLabel39 = new DevExpress.XtraReports.UI.XRLabel();
  210. this.xrLabel38 = new DevExpress.XtraReports.UI.XRLabel();
  211. this.xrLabel37 = new DevExpress.XtraReports.UI.XRLabel();
  212. this.xrLabel36 = new DevExpress.XtraReports.UI.XRLabel();
  213. this.xrLabel35 = new DevExpress.XtraReports.UI.XRLabel();
  214. this.xrLabel34 = new DevExpress.XtraReports.UI.XRLabel();
  215. this.xrLabel33 = new DevExpress.XtraReports.UI.XRLabel();
  216. this.xrLabel32 = new DevExpress.XtraReports.UI.XRLabel();
  217. this.xrLabel31 = new DevExpress.XtraReports.UI.XRLabel();
  218. this.xrLabel30 = new DevExpress.XtraReports.UI.XRLabel();
  219. this.xrLabel29 = new DevExpress.XtraReports.UI.XRLabel();
  220. this.xrLabel28 = new DevExpress.XtraReports.UI.XRLabel();
  221. this.xrLabel27 = new DevExpress.XtraReports.UI.XRLabel();
  222. this.xrLabel26 = new DevExpress.XtraReports.UI.XRLabel();
  223. this.xrLabel25 = new DevExpress.XtraReports.UI.XRLabel();
  224. this.xrLabel24 = new DevExpress.XtraReports.UI.XRLabel();
  225. this.xrLabel23 = new DevExpress.XtraReports.UI.XRLabel();
  226. this.xrLabel22 = new DevExpress.XtraReports.UI.XRLabel();
  227. this.xrLabel21 = new DevExpress.XtraReports.UI.XRLabel();
  228. this.xrLabel20 = new DevExpress.XtraReports.UI.XRLabel();
  229. this.xrLabel19 = new DevExpress.XtraReports.UI.XRLabel();
  230. this.xrLabel18 = new DevExpress.XtraReports.UI.XRLabel();
  231. this.xrLabel4 = new DevExpress.XtraReports.UI.XRLabel();
  232. this.xrLabel17 = new DevExpress.XtraReports.UI.XRLabel();
  233. this.xrLabel16 = new DevExpress.XtraReports.UI.XRLabel();
  234. this.xrLabel13 = new DevExpress.XtraReports.UI.XRLabel();
  235. this.xrLabel15 = new DevExpress.XtraReports.UI.XRLabel();
  236. this.xrLabel14 = new DevExpress.XtraReports.UI.XRLabel();
  237. this.xrLabel12 = new DevExpress.XtraReports.UI.XRLabel();
  238. this.xrLabel11 = new DevExpress.XtraReports.UI.XRLabel();
  239. this.xrLabel10 = new DevExpress.XtraReports.UI.XRLabel();
  240. this.xrLabel9 = new DevExpress.XtraReports.UI.XRLabel();
  241. this.xrLabel7 = new DevExpress.XtraReports.UI.XRLabel();
  242. this.xrLabel6 = new DevExpress.XtraReports.UI.XRLabel();
  243. this.xrLabel5 = new DevExpress.XtraReports.UI.XRLabel();
  244. this.xrLabel2 = new DevExpress.XtraReports.UI.XRLabel();
  245. this.xrLabel1 = new DevExpress.XtraReports.UI.XRLabel();
  246. this.sqlDataSource1 = new DevExpress.DataAccess.Sql.SqlDataSource(this.components);
  247. this.xrControlStyle1 = new DevExpress.XtraReports.UI.XRControlStyle();
  248. ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
  249. //
  250. // TopMargin
  251. //
  252. this.TopMargin.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
  253. this.TopMargin.BorderWidth = 1F;
  254. this.TopMargin.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
  255. this.xrLabel3,
  256. this.xrLabel8});
  257. this.TopMargin.Name = "TopMargin";
  258. this.TopMargin.StylePriority.UseBorders = false;
  259. this.TopMargin.StylePriority.UseBorderWidth = false;
  260. //
  261. // xrLabel3
  262. //
  263. this.xrLabel3.Borders = DevExpress.XtraPrinting.BorderSide.None;
  264. this.xrLabel3.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  265. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "Now()")});
  266. this.xrLabel3.Multiline = true;
  267. this.xrLabel3.Name = "xrLabel3";
  268. this.xrLabel3.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  269. this.xrLabel3.StylePriority.UseBorders = false;
  270. this.xrLabel3.StylePriority.UseFont = false;
  271. //
  272. // xrLabel8
  273. //
  274. this.xrLabel8.Borders = DevExpress.XtraPrinting.BorderSide.None;
  275. this.xrLabel8.Multiline = true;
  276. this.xrLabel8.Name = "xrLabel8";
  277. this.xrLabel8.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  278. this.xrLabel8.StylePriority.UseBorders = false;
  279. this.xrLabel8.StylePriority.UseFont = false;
  280. //
  281. // BottomMargin
  282. //
  283. this.BottomMargin.Name = "BottomMargin";
  284. //
  285. // Detail
  286. //
  287. this.Detail.Controls.AddRange(new DevExpress.XtraReports.UI.XRControl[] {
  288. this.xrLabel79,
  289. this.xrLabel78,
  290. this.xrLabel77,
  291. this.xrLabel76,
  292. this.xrLabel75,
  293. this.xrLabel74,
  294. this.xrLabel73,
  295. this.xrLabel72,
  296. this.xrLabel71,
  297. this.xrLabel70,
  298. this.xrLabel69,
  299. this.xrLabel68,
  300. this.xrLabel67,
  301. this.xrLabel66,
  302. this.xrLabel62,
  303. this.xrLabel63,
  304. this.xrLabel64,
  305. this.xrLabel65,
  306. this.xrLabel61,
  307. this.xrSubreport1,
  308. this.xrLabel60,
  309. this.xrLabel59,
  310. this.xrLabel58,
  311. this.xrLabel57,
  312. this.xrLabel56,
  313. this.xrLabel55,
  314. this.xrLabel54,
  315. this.xrLabel53,
  316. this.xrLabel52,
  317. this.xrLabel51,
  318. this.xrLabel50,
  319. this.xrLabel49,
  320. this.xrLabel48,
  321. this.xrLabel47,
  322. this.xrLabel46,
  323. this.xrLabel45,
  324. this.xrLabel44,
  325. this.xrLabel43,
  326. this.xrLabel42,
  327. this.xrLabel41,
  328. this.xrLabel40,
  329. this.xrLabel39,
  330. this.xrLabel38,
  331. this.xrLabel37,
  332. this.xrLabel36,
  333. this.xrLabel35,
  334. this.xrLabel34,
  335. this.xrLabel33,
  336. this.xrLabel32,
  337. this.xrLabel31,
  338. this.xrLabel30,
  339. this.xrLabel29,
  340. this.xrLabel28,
  341. this.xrLabel27,
  342. this.xrLabel26,
  343. this.xrLabel25,
  344. this.xrLabel24,
  345. this.xrLabel23,
  346. this.xrLabel22,
  347. this.xrLabel21,
  348. this.xrLabel20,
  349. this.xrLabel19,
  350. this.xrLabel18,
  351. this.xrLabel4,
  352. this.xrLabel17,
  353. this.xrLabel16,
  354. this.xrLabel13,
  355. this.xrLabel15,
  356. this.xrLabel14,
  357. this.xrLabel12,
  358. this.xrLabel11,
  359. this.xrLabel10,
  360. this.xrLabel9,
  361. this.xrLabel7,
  362. this.xrLabel6,
  363. this.xrLabel5,
  364. this.xrLabel2,
  365. this.xrLabel1});
  366. this.Detail.Name = "Detail";
  367. //
  368. // xrLabel79
  369. //
  370. this.xrLabel79.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  371. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PassportExpiryDate]")});
  372. this.xrLabel79.Multiline = true;
  373. this.xrLabel79.Name = "xrLabel79";
  374. this.xrLabel79.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  375. //
  376. // xrLabel78
  377. //
  378. this.xrLabel78.Multiline = true;
  379. this.xrLabel78.Name = "xrLabel78";
  380. this.xrLabel78.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  381. this.xrLabel78.StylePriority.UseFont = false;
  382. //
  383. // xrLabel77
  384. //
  385. this.xrLabel77.Multiline = true;
  386. this.xrLabel77.Name = "xrLabel77";
  387. this.xrLabel77.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  388. this.xrLabel77.StylePriority.UseFont = false;
  389. //
  390. // xrLabel76
  391. //
  392. this.xrLabel76.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  393. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[JobDescription]")});
  394. this.xrLabel76.Multiline = true;
  395. this.xrLabel76.Name = "xrLabel76";
  396. this.xrLabel76.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  397. //
  398. // xrLabel75
  399. //
  400. this.xrLabel75.Multiline = true;
  401. this.xrLabel75.Name = "xrLabel75";
  402. this.xrLabel75.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  403. this.xrLabel75.StylePriority.UseFont = false;
  404. //
  405. // xrLabel74
  406. //
  407. this.xrLabel74.Multiline = true;
  408. this.xrLabel74.Name = "xrLabel74";
  409. this.xrLabel74.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  410. this.xrLabel74.StylePriority.UseFont = false;
  411. //
  412. // xrLabel73
  413. //
  414. this.xrLabel73.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  415. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Cities_NameEn]")});
  416. this.xrLabel73.Multiline = true;
  417. this.xrLabel73.Name = "xrLabel73";
  418. this.xrLabel73.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  419. //
  420. // xrLabel72
  421. //
  422. this.xrLabel72.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  423. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[CountryLookups_NameEn]")});
  424. this.xrLabel72.Multiline = true;
  425. this.xrLabel72.Name = "xrLabel72";
  426. this.xrLabel72.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  427. //
  428. // xrLabel71
  429. //
  430. this.xrLabel71.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  431. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[AspNetUsers_1_Position]")});
  432. this.xrLabel71.Multiline = true;
  433. this.xrLabel71.Name = "xrLabel71";
  434. this.xrLabel71.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  435. //
  436. // xrLabel70
  437. //
  438. this.xrLabel70.Multiline = true;
  439. this.xrLabel70.Name = "xrLabel70";
  440. this.xrLabel70.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  441. this.xrLabel70.StylePriority.UseFont = false;
  442. //
  443. // xrLabel69
  444. //
  445. this.xrLabel69.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  446. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[AspNetUsers_1_PhoneNumber]")});
  447. this.xrLabel69.Multiline = true;
  448. this.xrLabel69.Name = "xrLabel69";
  449. this.xrLabel69.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  450. //
  451. // xrLabel68
  452. //
  453. this.xrLabel68.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  454. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "Concat([AspNetUsers_1_FirstName],\' \' ,[AspNetUsers_1_LastName])")});
  455. this.xrLabel68.Multiline = true;
  456. this.xrLabel68.Name = "xrLabel68";
  457. this.xrLabel68.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  458. //
  459. // xrLabel67
  460. //
  461. this.xrLabel67.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  462. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[AspNetUsers_1_PassportNumber]")});
  463. this.xrLabel67.Multiline = true;
  464. this.xrLabel67.Name = "xrLabel67";
  465. this.xrLabel67.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  466. //
  467. // xrLabel66
  468. //
  469. this.xrLabel66.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  470. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[AspNetUsers_1_Email]")});
  471. this.xrLabel66.Multiline = true;
  472. this.xrLabel66.Name = "xrLabel66";
  473. this.xrLabel66.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  474. //
  475. // xrLabel62
  476. //
  477. this.xrLabel62.Multiline = true;
  478. this.xrLabel62.Name = "xrLabel62";
  479. this.xrLabel62.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  480. this.xrLabel62.StylePriority.UseFont = false;
  481. //
  482. // xrLabel63
  483. //
  484. this.xrLabel63.Multiline = true;
  485. this.xrLabel63.Name = "xrLabel63";
  486. this.xrLabel63.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  487. this.xrLabel63.StylePriority.UseFont = false;
  488. //
  489. // xrLabel64
  490. //
  491. this.xrLabel64.Multiline = true;
  492. this.xrLabel64.Name = "xrLabel64";
  493. this.xrLabel64.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  494. this.xrLabel64.StylePriority.UseFont = false;
  495. //
  496. // xrLabel65
  497. //
  498. this.xrLabel65.Multiline = true;
  499. this.xrLabel65.Name = "xrLabel65";
  500. this.xrLabel65.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  501. this.xrLabel65.StylePriority.UseFont = false;
  502. //
  503. // xrLabel61
  504. //
  505. this.xrLabel61.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
  506. this.xrLabel61.Multiline = true;
  507. this.xrLabel61.Name = "xrLabel61";
  508. this.xrLabel61.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  509. this.xrLabel61.StylePriority.UseBorders = false;
  510. this.xrLabel61.StylePriority.UseFont = false;
  511. //
  512. // xrSubreport1
  513. //
  514. this.xrSubreport1.Name = "xrSubreport1";
  515. this.xrSubreport1.ParameterBindings.Add(new DevExpress.XtraReports.UI.ParameterBinding("ContractId", this.ContractId));
  516. this.xrSubreport1.ReportSource = new MTWorkHR.Infrastructure.Reports.ContractAllowances();
  517. //
  518. // ContractId
  519. //
  520. this.ContractId.AllowNull = true;
  521. this.ContractId.Name = "ContractId";
  522. this.ContractId.Type = typeof(int);
  523. this.ContractId.ValueInfo = "1";
  524. //
  525. // xrLabel60
  526. //
  527. this.xrLabel60.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
  528. this.xrLabel60.Multiline = true;
  529. this.xrLabel60.Name = "xrLabel60";
  530. this.xrLabel60.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  531. this.xrLabel60.StylePriority.UseBorders = false;
  532. this.xrLabel60.StylePriority.UseFont = false;
  533. //
  534. // xrLabel59
  535. //
  536. this.xrLabel59.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  537. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[JobTitleName]")});
  538. this.xrLabel59.Multiline = true;
  539. this.xrLabel59.Name = "xrLabel59";
  540. this.xrLabel59.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  541. //
  542. // xrLabel58
  543. //
  544. this.xrLabel58.Multiline = true;
  545. this.xrLabel58.Name = "xrLabel58";
  546. this.xrLabel58.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  547. this.xrLabel58.StylePriority.UseFont = false;
  548. //
  549. // xrLabel57
  550. //
  551. this.xrLabel57.Multiline = true;
  552. this.xrLabel57.Name = "xrLabel57";
  553. this.xrLabel57.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  554. this.xrLabel57.StylePriority.UseFont = false;
  555. //
  556. // xrLabel56
  557. //
  558. this.xrLabel56.Multiline = true;
  559. this.xrLabel56.Name = "xrLabel56";
  560. this.xrLabel56.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  561. this.xrLabel56.StylePriority.UseFont = false;
  562. //
  563. // xrLabel55
  564. //
  565. this.xrLabel55.Multiline = true;
  566. this.xrLabel55.Name = "xrLabel55";
  567. this.xrLabel55.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  568. this.xrLabel55.StylePriority.UseFont = false;
  569. //
  570. // xrLabel54
  571. //
  572. this.xrLabel54.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  573. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Address]")});
  574. this.xrLabel54.Multiline = true;
  575. this.xrLabel54.Name = "xrLabel54";
  576. this.xrLabel54.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  577. //
  578. // xrLabel53
  579. //
  580. this.xrLabel53.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  581. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Companies_PhoneNumber]")});
  582. this.xrLabel53.Multiline = true;
  583. this.xrLabel53.Name = "xrLabel53";
  584. this.xrLabel53.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  585. //
  586. // xrLabel52
  587. //
  588. this.xrLabel52.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  589. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Companies_Email]")});
  590. this.xrLabel52.Multiline = true;
  591. this.xrLabel52.Name = "xrLabel52";
  592. this.xrLabel52.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  593. //
  594. // xrLabel51
  595. //
  596. this.xrLabel51.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  597. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[NameEn]")});
  598. this.xrLabel51.Multiline = true;
  599. this.xrLabel51.Name = "xrLabel51";
  600. this.xrLabel51.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  601. //
  602. // xrLabel50
  603. //
  604. this.xrLabel50.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  605. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Currency]")});
  606. this.xrLabel50.Multiline = true;
  607. this.xrLabel50.Name = "xrLabel50";
  608. this.xrLabel50.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  609. //
  610. // xrLabel49
  611. //
  612. this.xrLabel49.Multiline = true;
  613. this.xrLabel49.Name = "xrLabel49";
  614. this.xrLabel49.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  615. this.xrLabel49.StylePriority.UseFont = false;
  616. //
  617. // xrLabel48
  618. //
  619. this.xrLabel48.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  620. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Salary]")});
  621. this.xrLabel48.Multiline = true;
  622. this.xrLabel48.Name = "xrLabel48";
  623. this.xrLabel48.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  624. this.xrLabel48.StylePriority.UseTextAlignment = false;
  625. this.xrLabel48.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
  626. //
  627. // xrLabel47
  628. //
  629. this.xrLabel47.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
  630. this.xrLabel47.Multiline = true;
  631. this.xrLabel47.Name = "xrLabel47";
  632. this.xrLabel47.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  633. this.xrLabel47.StylePriority.UseBorders = false;
  634. this.xrLabel47.StylePriority.UseFont = false;
  635. //
  636. // xrLabel46
  637. //
  638. this.xrLabel46.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  639. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[WorkingHours]")});
  640. this.xrLabel46.Multiline = true;
  641. this.xrLabel46.Name = "xrLabel46";
  642. this.xrLabel46.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  643. this.xrLabel46.StylePriority.UseTextAlignment = false;
  644. this.xrLabel46.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
  645. //
  646. // xrLabel45
  647. //
  648. this.xrLabel45.Multiline = true;
  649. this.xrLabel45.Name = "xrLabel45";
  650. this.xrLabel45.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  651. this.xrLabel45.StylePriority.UseFont = false;
  652. //
  653. // xrLabel44
  654. //
  655. this.xrLabel44.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  656. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[WorkingDays]")});
  657. this.xrLabel44.Multiline = true;
  658. this.xrLabel44.Name = "xrLabel44";
  659. this.xrLabel44.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  660. //
  661. // xrLabel43
  662. //
  663. this.xrLabel43.Multiline = true;
  664. this.xrLabel43.Name = "xrLabel43";
  665. this.xrLabel43.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  666. this.xrLabel43.StylePriority.UseFont = false;
  667. //
  668. // xrLabel42
  669. //
  670. this.xrLabel42.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
  671. this.xrLabel42.Multiline = true;
  672. this.xrLabel42.Name = "xrLabel42";
  673. this.xrLabel42.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  674. this.xrLabel42.StylePriority.UseBorders = false;
  675. this.xrLabel42.StylePriority.UseFont = false;
  676. //
  677. // xrLabel41
  678. //
  679. this.xrLabel41.Multiline = true;
  680. this.xrLabel41.Name = "xrLabel41";
  681. this.xrLabel41.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  682. this.xrLabel41.StylePriority.UseFont = false;
  683. //
  684. // xrLabel40
  685. //
  686. this.xrLabel40.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  687. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[NoticePeriodBeforeTermination]")});
  688. this.xrLabel40.Multiline = true;
  689. this.xrLabel40.Name = "xrLabel40";
  690. this.xrLabel40.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  691. this.xrLabel40.StylePriority.UseTextAlignment = false;
  692. this.xrLabel40.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
  693. //
  694. // xrLabel39
  695. //
  696. this.xrLabel39.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  697. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[TrialPeriod]")});
  698. this.xrLabel39.Multiline = true;
  699. this.xrLabel39.Name = "xrLabel39";
  700. this.xrLabel39.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  701. this.xrLabel39.StylePriority.UseTextAlignment = false;
  702. this.xrLabel39.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
  703. //
  704. // xrLabel38
  705. //
  706. this.xrLabel38.Multiline = true;
  707. this.xrLabel38.Name = "xrLabel38";
  708. this.xrLabel38.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  709. this.xrLabel38.StylePriority.UseFont = false;
  710. //
  711. // xrLabel37
  712. //
  713. this.xrLabel37.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  714. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[VacationDays]")});
  715. this.xrLabel37.Multiline = true;
  716. this.xrLabel37.Name = "xrLabel37";
  717. this.xrLabel37.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  718. this.xrLabel37.StylePriority.UseTextAlignment = false;
  719. this.xrLabel37.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
  720. //
  721. // xrLabel36
  722. //
  723. this.xrLabel36.Multiline = true;
  724. this.xrLabel36.Name = "xrLabel36";
  725. this.xrLabel36.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  726. this.xrLabel36.StylePriority.UseFont = false;
  727. //
  728. // xrLabel35
  729. //
  730. this.xrLabel35.Multiline = true;
  731. this.xrLabel35.Name = "xrLabel35";
  732. this.xrLabel35.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  733. this.xrLabel35.StylePriority.UseFont = false;
  734. //
  735. // xrLabel34
  736. //
  737. this.xrLabel34.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  738. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ContractTypeId]")});
  739. this.xrLabel34.Multiline = true;
  740. this.xrLabel34.Name = "xrLabel34";
  741. this.xrLabel34.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  742. this.xrLabel34.StylePriority.UseTextAlignment = false;
  743. this.xrLabel34.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
  744. //
  745. // xrLabel33
  746. //
  747. this.xrLabel33.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  748. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[ContractDurationId]")});
  749. this.xrLabel33.Multiline = true;
  750. this.xrLabel33.Name = "xrLabel33";
  751. this.xrLabel33.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  752. this.xrLabel33.StylePriority.UseTextAlignment = false;
  753. this.xrLabel33.TextAlignment = DevExpress.XtraPrinting.TextAlignment.TopLeft;
  754. //
  755. // xrLabel32
  756. //
  757. this.xrLabel32.Multiline = true;
  758. this.xrLabel32.Name = "xrLabel32";
  759. this.xrLabel32.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  760. this.xrLabel32.StylePriority.UseFont = false;
  761. //
  762. // xrLabel31
  763. //
  764. this.xrLabel31.Multiline = true;
  765. this.xrLabel31.Name = "xrLabel31";
  766. this.xrLabel31.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  767. this.xrLabel31.StylePriority.UseFont = false;
  768. //
  769. // xrLabel30
  770. //
  771. this.xrLabel30.Multiline = true;
  772. this.xrLabel30.Name = "xrLabel30";
  773. this.xrLabel30.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  774. this.xrLabel30.StylePriority.UseFont = false;
  775. //
  776. // xrLabel29
  777. //
  778. this.xrLabel29.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
  779. this.xrLabel29.Multiline = true;
  780. this.xrLabel29.Name = "xrLabel29";
  781. this.xrLabel29.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  782. this.xrLabel29.StylePriority.UseBorders = false;
  783. this.xrLabel29.StylePriority.UseFont = false;
  784. //
  785. // xrLabel28
  786. //
  787. this.xrLabel28.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
  788. this.xrLabel28.Multiline = true;
  789. this.xrLabel28.Name = "xrLabel28";
  790. this.xrLabel28.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  791. this.xrLabel28.StylePriority.UseBorders = false;
  792. this.xrLabel28.StylePriority.UseFont = false;
  793. //
  794. // xrLabel27
  795. //
  796. this.xrLabel27.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  797. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[JobNumber]")});
  798. this.xrLabel27.Multiline = true;
  799. this.xrLabel27.Name = "xrLabel27";
  800. this.xrLabel27.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  801. //
  802. // xrLabel26
  803. //
  804. this.xrLabel26.Multiline = true;
  805. this.xrLabel26.Name = "xrLabel26";
  806. this.xrLabel26.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  807. this.xrLabel26.StylePriority.UseFont = false;
  808. //
  809. // xrLabel25
  810. //
  811. this.xrLabel25.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  812. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Universities_NameEn]")});
  813. this.xrLabel25.Multiline = true;
  814. this.xrLabel25.Name = "xrLabel25";
  815. this.xrLabel25.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  816. //
  817. // xrLabel24
  818. //
  819. this.xrLabel24.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  820. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Email]")});
  821. this.xrLabel24.Multiline = true;
  822. this.xrLabel24.Name = "xrLabel24";
  823. this.xrLabel24.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  824. //
  825. // xrLabel23
  826. //
  827. this.xrLabel23.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  828. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[PhoneNumber]")});
  829. this.xrLabel23.Multiline = true;
  830. this.xrLabel23.Name = "xrLabel23";
  831. this.xrLabel23.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  832. //
  833. // xrLabel22
  834. //
  835. this.xrLabel22.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  836. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[JobTitles_NameEn]")});
  837. this.xrLabel22.Multiline = true;
  838. this.xrLabel22.Name = "xrLabel22";
  839. this.xrLabel22.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  840. //
  841. // xrLabel21
  842. //
  843. this.xrLabel21.Multiline = true;
  844. this.xrLabel21.Name = "xrLabel21";
  845. this.xrLabel21.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  846. this.xrLabel21.StylePriority.UseFont = false;
  847. //
  848. // xrLabel20
  849. //
  850. this.xrLabel20.Multiline = true;
  851. this.xrLabel20.Name = "xrLabel20";
  852. this.xrLabel20.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  853. this.xrLabel20.StylePriority.UseFont = false;
  854. //
  855. // xrLabel19
  856. //
  857. this.xrLabel19.Multiline = true;
  858. this.xrLabel19.Name = "xrLabel19";
  859. this.xrLabel19.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  860. this.xrLabel19.StylePriority.UseFont = false;
  861. //
  862. // xrLabel18
  863. //
  864. this.xrLabel18.Multiline = true;
  865. this.xrLabel18.Name = "xrLabel18";
  866. this.xrLabel18.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  867. this.xrLabel18.StylePriority.UseFont = false;
  868. //
  869. // xrLabel4
  870. //
  871. this.xrLabel4.Multiline = true;
  872. this.xrLabel4.Name = "xrLabel4";
  873. this.xrLabel4.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  874. this.xrLabel4.StylePriority.UseFont = false;
  875. //
  876. // xrLabel17
  877. //
  878. this.xrLabel17.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  879. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[DateOfBirth]")});
  880. this.xrLabel17.Multiline = true;
  881. this.xrLabel17.Name = "xrLabel17";
  882. this.xrLabel17.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  883. //
  884. // xrLabel16
  885. //
  886. this.xrLabel16.Multiline = true;
  887. this.xrLabel16.Name = "xrLabel16";
  888. this.xrLabel16.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  889. this.xrLabel16.StylePriority.UseFont = false;
  890. //
  891. // xrLabel13
  892. //
  893. this.xrLabel13.Multiline = true;
  894. this.xrLabel13.Name = "xrLabel13";
  895. this.xrLabel13.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  896. this.xrLabel13.StylePriority.UseFont = false;
  897. //
  898. // xrLabel15
  899. //
  900. this.xrLabel15.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
  901. this.xrLabel15.Multiline = true;
  902. this.xrLabel15.Name = "xrLabel15";
  903. this.xrLabel15.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  904. this.xrLabel15.StylePriority.UseBorders = false;
  905. this.xrLabel15.StylePriority.UseFont = false;
  906. //
  907. // xrLabel14
  908. //
  909. this.xrLabel14.Multiline = true;
  910. this.xrLabel14.Name = "xrLabel14";
  911. this.xrLabel14.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  912. this.xrLabel14.StylePriority.UseFont = false;
  913. //
  914. // xrLabel12
  915. //
  916. this.xrLabel12.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  917. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[CRNumber]")});
  918. this.xrLabel12.Multiline = true;
  919. this.xrLabel12.Name = "xrLabel12";
  920. this.xrLabel12.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  921. //
  922. // xrLabel11
  923. //
  924. this.xrLabel11.Multiline = true;
  925. this.xrLabel11.Name = "xrLabel11";
  926. this.xrLabel11.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  927. this.xrLabel11.StylePriority.UseFont = false;
  928. //
  929. // xrLabel10
  930. //
  931. this.xrLabel10.Multiline = true;
  932. this.xrLabel10.Name = "xrLabel10";
  933. this.xrLabel10.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  934. this.xrLabel10.StylePriority.UseFont = false;
  935. //
  936. // xrLabel9
  937. //
  938. this.xrLabel9.Borders = DevExpress.XtraPrinting.BorderSide.Bottom;
  939. this.xrLabel9.Multiline = true;
  940. this.xrLabel9.Name = "xrLabel9";
  941. this.xrLabel9.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  942. this.xrLabel9.StylePriority.UseBorders = false;
  943. this.xrLabel9.StylePriority.UseFont = false;
  944. //
  945. // xrLabel7
  946. //
  947. this.xrLabel7.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  948. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[EndDate]")});
  949. this.xrLabel7.Multiline = true;
  950. this.xrLabel7.Name = "xrLabel7";
  951. this.xrLabel7.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  952. //
  953. // xrLabel6
  954. //
  955. this.xrLabel6.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  956. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Contracts].[StartDate]")});
  957. this.xrLabel6.Multiline = true;
  958. this.xrLabel6.Name = "xrLabel6";
  959. this.xrLabel6.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  960. //
  961. // xrLabel5
  962. //
  963. this.xrLabel5.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  964. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Contracts].[PassportNumber]")});
  965. this.xrLabel5.Multiline = true;
  966. this.xrLabel5.Name = "xrLabel5";
  967. this.xrLabel5.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  968. //
  969. // xrLabel2
  970. //
  971. this.xrLabel2.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  972. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "Concat([FirstName],\' \' ,[LastName])")});
  973. this.xrLabel2.Multiline = true;
  974. this.xrLabel2.Name = "xrLabel2";
  975. this.xrLabel2.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  976. //
  977. // xrLabel1
  978. //
  979. this.xrLabel1.ExpressionBindings.AddRange(new DevExpress.XtraReports.UI.ExpressionBinding[] {
  980. new DevExpress.XtraReports.UI.ExpressionBinding("BeforePrint", "Text", "[Contracts].[CompanyName]")});
  981. this.xrLabel1.Multiline = true;
  982. this.xrLabel1.Name = "xrLabel1";
  983. this.xrLabel1.Padding = new DevExpress.XtraPrinting.PaddingInfo(2, 2, 0, 0, 100F);
  984. //
  985. // sqlDataSource1
  986. //
  987. this.sqlDataSource1.ConnectionName = "LocalConnectionString";
  988. this.sqlDataSource1.Name = "sqlDataSource1";
  989. columnExpression1.ColumnName = "CompanyName";
  990. table1.MetaSerializable = "<Meta X=\"185\" Y=\"30\" Width=\"125\" Height=\"385\" />";
  991. table1.Name = "Companies";
  992. columnExpression1.Table = table1;
  993. column1.Expression = columnExpression1;
  994. columnExpression2.ColumnName = "CRNumber";
  995. columnExpression2.Table = table1;
  996. column2.Expression = columnExpression2;
  997. columnExpression3.ColumnName = "TaxNumber";
  998. columnExpression3.Table = table1;
  999. column3.Expression = columnExpression3;
  1000. columnExpression4.ColumnName = "CreateDate";
  1001. table2.MetaSerializable = "<Meta X=\"30\" Y=\"30\" Width=\"125\" Height=\"845\" />";
  1002. table2.Name = "Contracts";
  1003. columnExpression4.Table = table2;
  1004. column4.Expression = columnExpression4;
  1005. columnExpression5.ColumnName = "ContractTypeId";
  1006. columnExpression5.Table = table2;
  1007. column5.Expression = columnExpression5;
  1008. columnExpression6.ColumnName = "CompanyId";
  1009. columnExpression6.Table = table2;
  1010. column6.Expression = columnExpression6;
  1011. columnExpression7.ColumnName = "NameEn";
  1012. table3.MetaSerializable = "<Meta X=\"495\" Y=\"30\" Width=\"125\" Height=\"125\" />";
  1013. table3.Name = "Qualifications";
  1014. columnExpression7.Table = table3;
  1015. column7.Expression = columnExpression7;
  1016. columnExpression8.ColumnName = "ContractDurationId";
  1017. columnExpression8.Table = table2;
  1018. column8.Expression = columnExpression8;
  1019. columnExpression9.ColumnName = "StartDate";
  1020. columnExpression9.Table = table2;
  1021. column9.Expression = columnExpression9;
  1022. columnExpression10.ColumnName = "JobNumber";
  1023. columnExpression10.Table = table2;
  1024. column10.Expression = columnExpression10;
  1025. columnExpression11.ColumnName = "VacationDays";
  1026. columnExpression11.Table = table2;
  1027. column11.Expression = columnExpression11;
  1028. columnExpression12.ColumnName = "TrialPeriod";
  1029. columnExpression12.Table = table2;
  1030. column12.Expression = columnExpression12;
  1031. columnExpression13.ColumnName = "NoticePeriodBeforeTermination";
  1032. columnExpression13.Table = table2;
  1033. column13.Expression = columnExpression13;
  1034. columnExpression14.ColumnName = "WorkingDays";
  1035. columnExpression14.Table = table2;
  1036. column14.Expression = columnExpression14;
  1037. columnExpression15.ColumnName = "WorkingHours";
  1038. columnExpression15.Table = table2;
  1039. column15.Expression = columnExpression15;
  1040. columnExpression16.ColumnName = "StartDailyWorkingHours";
  1041. columnExpression16.Table = table2;
  1042. column16.Expression = columnExpression16;
  1043. columnExpression17.ColumnName = "EndDailyWorkingHours";
  1044. columnExpression17.Table = table2;
  1045. column17.Expression = columnExpression17;
  1046. columnExpression18.ColumnName = "Salary";
  1047. columnExpression18.Table = table2;
  1048. column18.Expression = columnExpression18;
  1049. columnExpression19.ColumnName = "Currency";
  1050. columnExpression19.Table = table2;
  1051. column19.Expression = columnExpression19;
  1052. columnExpression20.ColumnName = "BillingCycle";
  1053. columnExpression20.Table = table2;
  1054. column20.Expression = columnExpression20;
  1055. columnExpression21.ColumnName = "IncludesAllAllowances";
  1056. columnExpression21.Table = table2;
  1057. column21.Expression = columnExpression21;
  1058. columnExpression22.ColumnName = "FirstName";
  1059. table4.MetaSerializable = "<Meta X=\"340\" Y=\"30\" Width=\"125\" Height=\"925\" />";
  1060. table4.Name = "AspNetUsers";
  1061. columnExpression22.Table = table4;
  1062. column22.Expression = columnExpression22;
  1063. columnExpression23.ColumnName = "LastName";
  1064. columnExpression23.Table = table4;
  1065. column23.Expression = columnExpression23;
  1066. columnExpression24.ColumnName = "UserType";
  1067. columnExpression24.Table = table4;
  1068. column24.Expression = columnExpression24;
  1069. columnExpression25.ColumnName = "PassportNumber";
  1070. columnExpression25.Table = table4;
  1071. column25.Expression = columnExpression25;
  1072. column26.Alias = "AspNetUsers_TaxNumber";
  1073. columnExpression26.ColumnName = "TaxNumber";
  1074. columnExpression26.Table = table4;
  1075. column26.Expression = columnExpression26;
  1076. columnExpression27.ColumnName = "IncomeTaxValue";
  1077. columnExpression27.Table = table4;
  1078. column27.Expression = columnExpression27;
  1079. columnExpression28.ColumnName = "Email";
  1080. columnExpression28.Table = table4;
  1081. column28.Expression = columnExpression28;
  1082. columnExpression29.ColumnName = "PhoneNumber";
  1083. columnExpression29.Table = table4;
  1084. column29.Expression = columnExpression29;
  1085. columnExpression30.ColumnName = "DateOfBirth";
  1086. columnExpression30.Table = table4;
  1087. column30.Expression = columnExpression30;
  1088. columnExpression31.ColumnName = "Position";
  1089. columnExpression31.Table = table4;
  1090. column31.Expression = columnExpression31;
  1091. column32.Alias = "Universities_NameEn";
  1092. columnExpression32.ColumnName = "NameEn";
  1093. table5.MetaSerializable = "<Meta X=\"490\" Y=\"420\" Width=\"125\" Height=\"125\" />";
  1094. table5.Name = "Universities";
  1095. columnExpression32.Table = table5;
  1096. column32.Expression = columnExpression32;
  1097. column33.Alias = "CountryLookups_NameEn";
  1098. columnExpression33.ColumnName = "NameEn";
  1099. table6.MetaSerializable = "<Meta X=\"650\" Y=\"260\" Width=\"125\" Height=\"165\" />";
  1100. table6.Name = "CountryLookups";
  1101. columnExpression33.Table = table6;
  1102. column33.Expression = columnExpression33;
  1103. column34.Alias = "JobTitles_NameEn";
  1104. columnExpression34.ColumnName = "NameEn";
  1105. table7.MetaSerializable = "<Meta X=\"650\" Y=\"30\" Width=\"125\" Height=\"125\" />";
  1106. table7.Name = "JobTitles";
  1107. columnExpression34.Table = table7;
  1108. column34.Expression = columnExpression34;
  1109. columnExpression35.ColumnName = "EndDate";
  1110. columnExpression35.Table = table2;
  1111. column35.Expression = columnExpression35;
  1112. columnExpression36.ColumnName = "TypeOfWork";
  1113. columnExpression36.Table = table2;
  1114. column36.Expression = columnExpression36;
  1115. columnExpression37.ColumnName = "WhoCanTerminateContractInTrial";
  1116. columnExpression37.Table = table2;
  1117. column37.Expression = columnExpression37;
  1118. columnExpression38.ColumnName = "WhoCanTerminateContract";
  1119. columnExpression38.Table = table2;
  1120. column38.Expression = columnExpression38;
  1121. columnExpression39.ColumnName = "Address";
  1122. columnExpression39.Table = table1;
  1123. column39.Expression = columnExpression39;
  1124. column40.Alias = "Companies_Email";
  1125. columnExpression40.ColumnName = "Email";
  1126. columnExpression40.Table = table1;
  1127. column40.Expression = columnExpression40;
  1128. column41.Alias = "Companies_PhoneNumber";
  1129. columnExpression41.ColumnName = "PhoneNumber";
  1130. columnExpression41.Table = table1;
  1131. column41.Expression = columnExpression41;
  1132. column42.Alias = "AspNetUsers_1_FirstName";
  1133. columnExpression42.ColumnName = "FirstName";
  1134. table8.Alias = "AspNetUsers_1";
  1135. table8.MetaSerializable = "<Meta X=\"780\" Y=\"380\" Width=\"125\" Height=\"925\" />";
  1136. table8.Name = "AspNetUsers";
  1137. columnExpression42.Table = table8;
  1138. column42.Expression = columnExpression42;
  1139. column43.Alias = "AspNetUsers_1_LastName";
  1140. columnExpression43.ColumnName = "LastName";
  1141. columnExpression43.Table = table8;
  1142. column43.Expression = columnExpression43;
  1143. column44.Alias = "AspNetUsers_1_Email";
  1144. columnExpression44.ColumnName = "Email";
  1145. columnExpression44.Table = table8;
  1146. column44.Expression = columnExpression44;
  1147. column45.Alias = "AspNetUsers_1_PassportNumber";
  1148. columnExpression45.ColumnName = "PassportNumber";
  1149. columnExpression45.Table = table8;
  1150. column45.Expression = columnExpression45;
  1151. columnExpression46.ColumnName = "JobTitleName";
  1152. columnExpression46.Table = table2;
  1153. column46.Expression = columnExpression46;
  1154. columnExpression47.ColumnName = "WorkingHoursNum";
  1155. columnExpression47.Table = table2;
  1156. column47.Expression = columnExpression47;
  1157. column48.Alias = "AspNetUsers_1_PhoneNumber";
  1158. columnExpression48.ColumnName = "PhoneNumber";
  1159. columnExpression48.Table = table8;
  1160. column48.Expression = columnExpression48;
  1161. column49.Alias = "AspNetUsers_1_Position";
  1162. columnExpression49.ColumnName = "Position";
  1163. columnExpression49.Table = table8;
  1164. column49.Expression = columnExpression49;
  1165. columnExpression50.ColumnName = "JobDescription";
  1166. columnExpression50.Table = table2;
  1167. column50.Expression = columnExpression50;
  1168. column51.Alias = "Cities_NameEn";
  1169. columnExpression51.ColumnName = "NameEn";
  1170. table9.MetaSerializable = "<Meta X=\"950\" Y=\"180\" Width=\"125\" Height=\"185\" />";
  1171. table9.Name = "Cities";
  1172. columnExpression51.Table = table9;
  1173. column51.Expression = columnExpression51;
  1174. columnExpression52.ColumnName = "PassportExpiryDate";
  1175. columnExpression52.Table = table4;
  1176. column52.Expression = columnExpression52;
  1177. selectQuery1.Columns.Add(column1);
  1178. selectQuery1.Columns.Add(column2);
  1179. selectQuery1.Columns.Add(column3);
  1180. selectQuery1.Columns.Add(column4);
  1181. selectQuery1.Columns.Add(column5);
  1182. selectQuery1.Columns.Add(column6);
  1183. selectQuery1.Columns.Add(column7);
  1184. selectQuery1.Columns.Add(column8);
  1185. selectQuery1.Columns.Add(column9);
  1186. selectQuery1.Columns.Add(column10);
  1187. selectQuery1.Columns.Add(column11);
  1188. selectQuery1.Columns.Add(column12);
  1189. selectQuery1.Columns.Add(column13);
  1190. selectQuery1.Columns.Add(column14);
  1191. selectQuery1.Columns.Add(column15);
  1192. selectQuery1.Columns.Add(column16);
  1193. selectQuery1.Columns.Add(column17);
  1194. selectQuery1.Columns.Add(column18);
  1195. selectQuery1.Columns.Add(column19);
  1196. selectQuery1.Columns.Add(column20);
  1197. selectQuery1.Columns.Add(column21);
  1198. selectQuery1.Columns.Add(column22);
  1199. selectQuery1.Columns.Add(column23);
  1200. selectQuery1.Columns.Add(column24);
  1201. selectQuery1.Columns.Add(column25);
  1202. selectQuery1.Columns.Add(column26);
  1203. selectQuery1.Columns.Add(column27);
  1204. selectQuery1.Columns.Add(column28);
  1205. selectQuery1.Columns.Add(column29);
  1206. selectQuery1.Columns.Add(column30);
  1207. selectQuery1.Columns.Add(column31);
  1208. selectQuery1.Columns.Add(column32);
  1209. selectQuery1.Columns.Add(column33);
  1210. selectQuery1.Columns.Add(column34);
  1211. selectQuery1.Columns.Add(column35);
  1212. selectQuery1.Columns.Add(column36);
  1213. selectQuery1.Columns.Add(column37);
  1214. selectQuery1.Columns.Add(column38);
  1215. selectQuery1.Columns.Add(column39);
  1216. selectQuery1.Columns.Add(column40);
  1217. selectQuery1.Columns.Add(column41);
  1218. selectQuery1.Columns.Add(column42);
  1219. selectQuery1.Columns.Add(column43);
  1220. selectQuery1.Columns.Add(column44);
  1221. selectQuery1.Columns.Add(column45);
  1222. selectQuery1.Columns.Add(column46);
  1223. selectQuery1.Columns.Add(column47);
  1224. selectQuery1.Columns.Add(column48);
  1225. selectQuery1.Columns.Add(column49);
  1226. selectQuery1.Columns.Add(column50);
  1227. selectQuery1.Columns.Add(column51);
  1228. selectQuery1.Columns.Add(column52);
  1229. selectQuery1.FilterString = "[Contracts.Id] = ?ContractId";
  1230. selectQuery1.GroupFilterString = "";
  1231. selectQuery1.Name = "Contracts";
  1232. queryParameter1.Name = "ContractId";
  1233. queryParameter1.Type = typeof(DevExpress.DataAccess.Expression);
  1234. queryParameter1.Value = new DevExpress.DataAccess.Expression("?ContractId", typeof(int));
  1235. selectQuery1.Parameters.AddRange(new DevExpress.DataAccess.Sql.QueryParameter[] {
  1236. queryParameter1});
  1237. relationColumnInfo1.NestedKeyColumn = "Id";
  1238. relationColumnInfo1.ParentKeyColumn = "CompanyId";
  1239. join1.KeyColumns.Add(relationColumnInfo1);
  1240. join1.Nested = table1;
  1241. join1.Parent = table2;
  1242. join1.SqlJoinType = ((DevExpress.DataAccess.Sql.SqlJoinType)(DevExpress.DataAccess.Sql.SqlJoinType.LeftOuter));
  1243. relationColumnInfo2.NestedKeyColumn = "Id";
  1244. relationColumnInfo2.ParentKeyColumn = "UserId";
  1245. join2.KeyColumns.Add(relationColumnInfo2);
  1246. join2.Nested = table4;
  1247. join2.Parent = table2;
  1248. join2.SqlJoinType = ((DevExpress.DataAccess.Sql.SqlJoinType)(DevExpress.DataAccess.Sql.SqlJoinType.LeftOuter));
  1249. relationColumnInfo3.NestedKeyColumn = "Id";
  1250. relationColumnInfo3.ParentKeyColumn = "JobId";
  1251. relationColumnInfo4.NestedKeyColumn = "Id";
  1252. relationColumnInfo4.ParentKeyColumn = "JobId";
  1253. join3.KeyColumns.Add(relationColumnInfo3);
  1254. join3.KeyColumns.Add(relationColumnInfo4);
  1255. join3.Nested = table7;
  1256. join3.Parent = table2;
  1257. join3.SqlJoinType = ((DevExpress.DataAccess.Sql.SqlJoinType)(DevExpress.DataAccess.Sql.SqlJoinType.LeftOuter));
  1258. relationColumnInfo5.NestedKeyColumn = "Id";
  1259. relationColumnInfo5.ParentKeyColumn = "AcademicQualificationId";
  1260. join4.KeyColumns.Add(relationColumnInfo5);
  1261. join4.Nested = table3;
  1262. join4.Parent = table2;
  1263. join4.SqlJoinType = ((DevExpress.DataAccess.Sql.SqlJoinType)(DevExpress.DataAccess.Sql.SqlJoinType.LeftOuter));
  1264. relationColumnInfo6.NestedKeyColumn = "Id";
  1265. relationColumnInfo6.ParentKeyColumn = "UniversityId";
  1266. join5.KeyColumns.Add(relationColumnInfo6);
  1267. join5.Nested = table5;
  1268. join5.Parent = table4;
  1269. join5.SqlJoinType = ((DevExpress.DataAccess.Sql.SqlJoinType)(DevExpress.DataAccess.Sql.SqlJoinType.LeftOuter));
  1270. relationColumnInfo7.NestedKeyColumn = "Id";
  1271. relationColumnInfo7.ParentKeyColumn = "WorkCountryId";
  1272. join6.KeyColumns.Add(relationColumnInfo7);
  1273. join6.Nested = table6;
  1274. join6.Parent = table2;
  1275. join6.SqlJoinType = ((DevExpress.DataAccess.Sql.SqlJoinType)(DevExpress.DataAccess.Sql.SqlJoinType.LeftOuter));
  1276. relationColumnInfo8.NestedKeyColumn = "Id";
  1277. relationColumnInfo8.ParentKeyColumn = "WorkStateId";
  1278. join7.KeyColumns.Add(relationColumnInfo8);
  1279. join7.Nested = table9;
  1280. join7.Parent = table2;
  1281. join7.SqlJoinType = ((DevExpress.DataAccess.Sql.SqlJoinType)(DevExpress.DataAccess.Sql.SqlJoinType.LeftOuter));
  1282. relationColumnInfo9.NestedKeyColumn = "Id";
  1283. relationColumnInfo9.ParentKeyColumn = "CompanyRepresentativeId";
  1284. join8.KeyColumns.Add(relationColumnInfo9);
  1285. join8.Nested = table8;
  1286. join8.Parent = table2;
  1287. join8.SqlJoinType = ((DevExpress.DataAccess.Sql.SqlJoinType)(DevExpress.DataAccess.Sql.SqlJoinType.LeftOuter));
  1288. selectQuery1.Relations.Add(join1);
  1289. selectQuery1.Relations.Add(join2);
  1290. selectQuery1.Relations.Add(join3);
  1291. selectQuery1.Relations.Add(join4);
  1292. selectQuery1.Relations.Add(join5);
  1293. selectQuery1.Relations.Add(join6);
  1294. selectQuery1.Relations.Add(join7);
  1295. selectQuery1.Relations.Add(join8);
  1296. selectQuery1.Tables.Add(table2);
  1297. selectQuery1.Tables.Add(table1);
  1298. selectQuery1.Tables.Add(table4);
  1299. selectQuery1.Tables.Add(table3);
  1300. selectQuery1.Tables.Add(table7);
  1301. selectQuery1.Tables.Add(table6);
  1302. selectQuery1.Tables.Add(table5);
  1303. selectQuery1.Tables.Add(table8);
  1304. selectQuery1.Tables.Add(table9);
  1305. this.sqlDataSource1.Queries.AddRange(new DevExpress.DataAccess.Sql.SqlQuery[] {
  1306. selectQuery1});
  1307. this.sqlDataSource1.ResultSchemaSerializable = resources.GetString("sqlDataSource1.ResultSchemaSerializable");
  1308. //
  1309. // xrControlStyle1
  1310. //
  1311. this.xrControlStyle1.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  1312. this.xrControlStyle1.BorderDashStyle = DevExpress.XtraPrinting.BorderDashStyle.Solid;
  1313. this.xrControlStyle1.Borders = ((DevExpress.XtraPrinting.BorderSide)((((DevExpress.XtraPrinting.BorderSide.Left | DevExpress.XtraPrinting.BorderSide.Top)
  1314. | DevExpress.XtraPrinting.BorderSide.Right)
  1315. | DevExpress.XtraPrinting.BorderSide.Bottom)));
  1316. this.xrControlStyle1.BorderWidth = 5F;
  1317. this.xrControlStyle1.Name = "xrControlStyle1";
  1318. //
  1319. // ContractReport
  1320. //
  1321. this.Bands.AddRange(new DevExpress.XtraReports.UI.Band[] {
  1322. this.TopMargin,
  1323. this.BottomMargin,
  1324. this.Detail});
  1325. this.ComponentStorage.AddRange(new System.ComponentModel.IComponent[] {
  1326. this.sqlDataSource1});
  1327. this.DataMember = "Contracts";
  1328. this.DataSource = this.sqlDataSource1;
  1329. this.LocalizationItems.AddRange(new DevExpress.XtraReports.Localization.LocalizationItem[] {
  1330. new DevExpress.XtraReports.Localization.LocalizationItem(this.ContractId, "Default", "Description", "ContractId"),
  1331. new DevExpress.XtraReports.Localization.LocalizationItem(this, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F)),
  1332. new DevExpress.XtraReports.Localization.LocalizationItem(this, "Default", "Margins", new DevExpress.Drawing.DXMargins(100F, 100F, 84.16666F, 100F)),
  1333. new DevExpress.XtraReports.Localization.LocalizationItem(this, "en-US", "Margins", new DevExpress.Drawing.DXMargins(100F, 100F, 84.16666F, 100F)),
  1334. new DevExpress.XtraReports.Localization.LocalizationItem(this.Detail, "Default", "HeightF", 759.1667F),
  1335. new DevExpress.XtraReports.Localization.LocalizationItem(this.TopMargin, "Default", "HeightF", 84.16666F),
  1336. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel1, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(122.4999F, 33.83331F)),
  1337. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel1, "Default", "SizeF", new System.Drawing.SizeF(201.6667F, 23F)),
  1338. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel1, "Default", "Text", "xrLabel1"),
  1339. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel10, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1340. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel10, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 33.83331F)),
  1341. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel10, "Default", "SizeF", new System.Drawing.SizeF(70.83334F, 23F)),
  1342. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel10, "Default", "Text", "Name:"),
  1343. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel11, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1344. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel11, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(391.6667F, 33.83331F)),
  1345. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel11, "Default", "SizeF", new System.Drawing.SizeF(70.83334F, 23F)),
  1346. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel11, "Default", "Text", "CR:"),
  1347. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel12, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(462.5F, 33.83331F)),
  1348. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel12, "Default", "SizeF", new System.Drawing.SizeF(177.5F, 23F)),
  1349. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel12, "Default", "Text", "xrLabel12"),
  1350. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel13, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1351. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel13, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 255F)),
  1352. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel13, "Default", "SizeF", new System.Drawing.SizeF(70.83334F, 23F)),
  1353. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel13, "Default", "Text", "Passport:"),
  1354. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel14, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1355. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel14, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 232F)),
  1356. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel14, "Default", "SizeF", new System.Drawing.SizeF(70.83334F, 23F)),
  1357. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel14, "Default", "Text", "Name:"),
  1358. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel15, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 14F, DevExpress.Drawing.DXFontStyle.Bold)),
  1359. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel15, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 194.8333F)),
  1360. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel15, "Default", "SizeF", new System.Drawing.SizeF(600F, 23F)),
  1361. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel15, "en-US", "SizeF", new System.Drawing.SizeF(618.3333F, 23F)),
  1362. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel15, "Default", "Text", "Employee Information:"),
  1363. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel16, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1364. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel16, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 278F)),
  1365. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel16, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1366. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel16, "Default", "Text", "Date Of Birth:"),
  1367. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel17, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(122.4999F, 277.9999F)),
  1368. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel17, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(132.5F, 185.9999F)),
  1369. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel17, "Default", "SizeF", new System.Drawing.SizeF(100F, 23F)),
  1370. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel17, "Default", "Text", "xrLabel17"),
  1371. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel17, "Default", "TextFormatString", "{0:d}"),
  1372. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel18, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1373. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel18, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(377.5F, 278F)),
  1374. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel18, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(355.8332F, 209F)),
  1375. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel18, "Default", "SizeF", new System.Drawing.SizeF(51.66666F, 23.00003F)),
  1376. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel18, "en-US", "SizeF", new System.Drawing.SizeF(99.99994F, 23.00002F)),
  1377. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel18, "Default", "Text", "Email:"),
  1378. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel19, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1379. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel19, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 406.3337F)),
  1380. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel19, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1381. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel19, "Default", "Text", "Job:"),
  1382. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel2, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(122.4999F, 231.9999F)),
  1383. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel2, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(132.5F, 139.9999F)),
  1384. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel2, "Default", "SizeF", new System.Drawing.SizeF(257.5001F, 23F)),
  1385. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel2, "Default", "Text", "xrLabel2"),
  1386. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel20, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1387. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel20, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(377.5F, 301F)),
  1388. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel20, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(355.8332F, 232F)),
  1389. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel20, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1390. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel20, "en-US", "SizeF", new System.Drawing.SizeF(99.99994F, 23.00003F)),
  1391. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel20, "Default", "Text", "Qualification:"),
  1392. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel21, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1393. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel21, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 324F)),
  1394. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel21, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1395. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel21, "Default", "Text", "University:"),
  1396. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel22, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(166.6666F, 406.3337F)),
  1397. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel22, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(158.3333F, 314.3335F)),
  1398. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel22, "Default", "SizeF", new System.Drawing.SizeF(225.0001F, 23F)),
  1399. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel22, "Default", "Text", "xrLabel22"),
  1400. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel23, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(122.4999F, 300.9998F)),
  1401. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel23, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(132.5F, 208.9999F)),
  1402. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel23, "Default", "SizeF", new System.Drawing.SizeF(100F, 23F)),
  1403. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel23, "Default", "Text", "xrLabel23"),
  1404. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel24, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(433.3333F, 277.9998F)),
  1405. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel24, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(455.8331F, 209F)),
  1406. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel24, "Default", "SizeF", new System.Drawing.SizeF(206.6667F, 22.99994F)),
  1407. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel24, "en-US", "SizeF", new System.Drawing.SizeF(194.1669F, 22.99998F)),
  1408. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel24, "Default", "Text", "xrLabel24"),
  1409. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel25, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(122.4999F, 324.0002F)),
  1410. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel25, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(132.5F, 232.0001F)),
  1411. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel25, "Default", "SizeF", new System.Drawing.SizeF(172.5001F, 23.00002F)),
  1412. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel25, "Default", "Text", "xrLabel25"),
  1413. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel26, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1414. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel26, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(391.6667F, 406.3339F)),
  1415. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel26, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(355.8332F, 314.3336F)),
  1416. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel26, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1417. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel26, "Default", "Text", "Job Number:"),
  1418. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel27, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(491.6667F, 406.3339F)),
  1419. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel27, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(455.8332F, 314.3336F)),
  1420. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel27, "Default", "SizeF", new System.Drawing.SizeF(130F, 22.99997F)),
  1421. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel27, "Default", "Text", "xrLabel27"),
  1422. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel28, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 14F, DevExpress.Drawing.DXFontStyle.Bold)),
  1423. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel28, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 370.0002F)),
  1424. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel28, "Default", "SizeF", new System.Drawing.SizeF(600F, 23F)),
  1425. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel28, "en-US", "SizeF", new System.Drawing.SizeF(618.3333F, 23F)),
  1426. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel28, "Default", "Text", "Job"),
  1427. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel29, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold)),
  1428. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel29, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 458.1667F)),
  1429. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel29, "Default", "SizeF", new System.Drawing.SizeF(600F, 23F)),
  1430. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel29, "en-US", "SizeF", new System.Drawing.SizeF(618.3333F, 23F)),
  1431. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel29, "Default", "Text", "Contract"),
  1432. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel3, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F)),
  1433. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel3, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(491.6667F, 10F)),
  1434. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel3, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(491.6667F, 10F)),
  1435. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel3, "Default", "SizeF", new System.Drawing.SizeF(148.3333F, 23.00002F)),
  1436. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel30, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1437. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel30, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 481.1667F)),
  1438. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel30, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1439. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel30, "Default", "Text", "Start Date:"),
  1440. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel31, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1441. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel31, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(391.6667F, 481.1667F)),
  1442. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel31, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(355.8332F, 403.1669F)),
  1443. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel31, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1444. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel31, "Default", "Text", "End Date:"),
  1445. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel32, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1446. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel32, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 504.1667F)),
  1447. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel32, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1448. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel32, "Default", "Text", "Duration:"),
  1449. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel33, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(166.6666F, 504.1665F)),
  1450. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel33, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(132.5F, 426.1669F)),
  1451. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel33, "Default", "SizeF", new System.Drawing.SizeF(100F, 23F)),
  1452. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel33, "Default", "Text", "xrLabel33"),
  1453. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel34, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(491.6667F, 504.1667F)),
  1454. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel34, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(455.8332F, 426.1669F)),
  1455. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel34, "Default", "SizeF", new System.Drawing.SizeF(100F, 23F)),
  1456. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel34, "Default", "Text", "xrLabel34"),
  1457. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel35, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1458. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel35, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(391.6667F, 504.1667F)),
  1459. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel35, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(355.8332F, 426.1669F)),
  1460. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel35, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1461. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel35, "Default", "Text", "Contract Type:"),
  1462. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel36, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1463. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel36, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 527.1666F)),
  1464. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel36, "Default", "SizeF", new System.Drawing.SizeF(135F, 23.00003F)),
  1465. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel36, "en-US", "SizeF", new System.Drawing.SizeF(108F, 23.00003F)),
  1466. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel36, "Default", "Text", "Vacation Days:"),
  1467. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel37, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(166.6667F, 527.1666F)),
  1468. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel37, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(132.5003F, 449.167F)),
  1469. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel37, "Default", "SizeF", new System.Drawing.SizeF(100F, 23F)),
  1470. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel37, "Default", "Text", "xrLabel37"),
  1471. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel38, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1472. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel38, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(391.6667F, 527.1666F)),
  1473. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel38, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00003F)),
  1474. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel38, "Default", "Text", "Trial Period:"),
  1475. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel39, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(491.6667F, 527.1666F)),
  1476. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel39, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(132.5F, 472.167F)),
  1477. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel39, "Default", "SizeF", new System.Drawing.SizeF(100F, 23F)),
  1478. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel39, "Default", "Text", "xrLabel39"),
  1479. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel4, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1480. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel4, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 301F)),
  1481. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel4, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1482. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel4, "Default", "Text", "Phone:"),
  1483. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel40, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(204.1666F, 550.1666F)),
  1484. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel40, "Default", "SizeF", new System.Drawing.SizeF(68.33331F, 23F)),
  1485. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel40, "Default", "Text", "xrLabel40"),
  1486. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel41, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1487. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel41, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 550.1666F)),
  1488. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel41, "Default", "SizeF", new System.Drawing.SizeF(180F, 23F)),
  1489. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel41, "Default", "Text", "Termination Notice Period:"),
  1490. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel42, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 14F, DevExpress.Drawing.DXFontStyle.Bold)),
  1491. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel42, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(22.49995F, 573.1666F)),
  1492. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel42, "Default", "SizeF", new System.Drawing.SizeF(600F, 23F)),
  1493. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel42, "en-US", "SizeF", new System.Drawing.SizeF(618.3333F, 23F)),
  1494. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel42, "Default", "Text", "Work Time"),
  1495. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel43, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1496. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel43, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(22.49995F, 596.1666F)),
  1497. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel43, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00003F)),
  1498. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel43, "Default", "Text", "Working Days:"),
  1499. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel44, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(167.5F, 596.1666F)),
  1500. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel44, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(132.5F, 567.1669F)),
  1501. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel44, "Default", "SizeF", new System.Drawing.SizeF(172.4999F, 23F)),
  1502. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel44, "Default", "Text", "xrLabel44"),
  1503. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel45, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1504. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel45, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(392.4999F, 596.1665F)),
  1505. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel45, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(355.8332F, 567.1668F)),
  1506. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel45, "Default", "SizeF", new System.Drawing.SizeF(111.6667F, 23.00006F)),
  1507. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel45, "Default", "Text", "Working Hours:"),
  1508. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel46, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(504.1667F, 596.1669F)),
  1509. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel46, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(467.4999F, 567.167F)),
  1510. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel46, "Default", "SizeF", new System.Drawing.SizeF(100F, 23F)),
  1511. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel46, "Default", "Text", "xrLabel46"),
  1512. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel47, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 14F, DevExpress.Drawing.DXFontStyle.Bold)),
  1513. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel47, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(22.49995F, 619.1669F)),
  1514. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel47, "Default", "SizeF", new System.Drawing.SizeF(600F, 23F)),
  1515. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel47, "en-US", "SizeF", new System.Drawing.SizeF(618.3333F, 23F)),
  1516. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel47, "Default", "Text", "Salary"),
  1517. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel48, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(123.3332F, 642.1667F)),
  1518. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel48, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(132.5F, 638.6667F)),
  1519. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel48, "Default", "SizeF", new System.Drawing.SizeF(79.16672F, 23F)),
  1520. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel48, "Default", "Text", "xrLabel48"),
  1521. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel49, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1522. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel49, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(23.33323F, 642.1667F)),
  1523. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel49, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00003F)),
  1524. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel49, "Default", "Text", "Amount:"),
  1525. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel5, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(122.4999F, 254.9999F)),
  1526. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel5, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(132.5F, 162.9999F)),
  1527. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel5, "Default", "SizeF", new System.Drawing.SizeF(150F, 23F)),
  1528. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel5, "Default", "Text", "xrLabel5"),
  1529. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel50, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(205.8334F, 642.1667F)),
  1530. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel50, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(211.6668F, 638.6668F)),
  1531. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel50, "Default", "SizeF", new System.Drawing.SizeF(100F, 23F)),
  1532. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel50, "en-US", "SizeF", new System.Drawing.SizeF(93.33333F, 23F)),
  1533. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel50, "Default", "Text", "xrLabel50"),
  1534. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel51, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(477.5F, 301.0002F)),
  1535. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel51, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(455.8331F, 232.0001F)),
  1536. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel51, "Default", "SizeF", new System.Drawing.SizeF(170F, 23.00002F)),
  1537. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel51, "en-US", "SizeF", new System.Drawing.SizeF(194.1669F, 23.00002F)),
  1538. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel51, "Default", "Text", "xrLabel51"),
  1539. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel52, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(122.4999F, 56.83329F)),
  1540. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel52, "Default", "SizeF", new System.Drawing.SizeF(201.6667F, 22.99999F)),
  1541. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel52, "Default", "Text", "xrLabel52"),
  1542. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel53, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(462.5F, 56.83329F)),
  1543. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel53, "Default", "SizeF", new System.Drawing.SizeF(177.5F, 23F)),
  1544. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel53, "Default", "Text", "xrLabel53"),
  1545. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel54, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(122.4999F, 79.83327F)),
  1546. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel54, "Default", "SizeF", new System.Drawing.SizeF(469.1668F, 22.99999F)),
  1547. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel54, "Default", "Text", "xrLabel54"),
  1548. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel55, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1549. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel55, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 56.83332F)),
  1550. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel55, "Default", "SizeF", new System.Drawing.SizeF(70.83334F, 23F)),
  1551. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel55, "Default", "Text", "Email:"),
  1552. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel56, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1553. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel56, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(22.49995F, 79.83327F)),
  1554. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel56, "Default", "SizeF", new System.Drawing.SizeF(70.83334F, 23F)),
  1555. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel56, "Default", "Text", "Address:"),
  1556. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel57, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1557. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel57, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(391.6667F, 56.83327F)),
  1558. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel57, "Default", "SizeF", new System.Drawing.SizeF(70.83334F, 23F)),
  1559. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel57, "Default", "Text", "Phone:"),
  1560. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel58, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1561. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel58, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(377.5F, 324F)),
  1562. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel58, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1563. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel58, "Default", "Text", "Job:"),
  1564. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel59, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(477.5F, 324F)),
  1565. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel59, "Default", "SizeF", new System.Drawing.SizeF(172.5002F, 23F)),
  1566. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel59, "Default", "Text", "xrLabel59"),
  1567. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel6, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(166.6666F, 481.1667F)),
  1568. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel6, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(132.5F, 403.167F)),
  1569. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel6, "Default", "SizeF", new System.Drawing.SizeF(141.6667F, 23F)),
  1570. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel6, "Default", "Text", "xrLabel6"),
  1571. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel6, "Default", "TextFormatString", "{0:d}"),
  1572. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel60, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 14F, DevExpress.Drawing.DXFontStyle.Bold)),
  1573. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel60, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(22.49995F, 665.1667F)),
  1574. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel60, "Default", "SizeF", new System.Drawing.SizeF(600F, 23F)),
  1575. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel60, "Default", "Text", "Allowances"),
  1576. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel61, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold)),
  1577. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel61, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 102.8333F)),
  1578. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel61, "Default", "SizeF", new System.Drawing.SizeF(600F, 23F)),
  1579. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel61, "Default", "Text", "Company Representative:"),
  1580. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel62, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1581. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel62, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 125.8333F)),
  1582. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel62, "Default", "SizeF", new System.Drawing.SizeF(70.83334F, 23F)),
  1583. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel62, "Default", "Text", "Name:"),
  1584. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel63, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1585. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel63, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(377.5F, 125.8333F)),
  1586. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel63, "Default", "SizeF", new System.Drawing.SizeF(70.83334F, 23F)),
  1587. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel63, "Default", "Text", "Passport:"),
  1588. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel64, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1589. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel64, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(22.49995F, 148.8332F)),
  1590. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel64, "Default", "SizeF", new System.Drawing.SizeF(70.83334F, 23.00002F)),
  1591. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel64, "Default", "Text", "Phone:"),
  1592. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel65, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1593. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel65, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(377.5F, 148.8332F)),
  1594. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel65, "Default", "SizeF", new System.Drawing.SizeF(51.66666F, 23.00003F)),
  1595. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel65, "Default", "Text", "Email:"),
  1596. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel66, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(433.3333F, 148.8332F)),
  1597. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel66, "Default", "SizeF", new System.Drawing.SizeF(206.6667F, 23F)),
  1598. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel66, "Default", "Text", "xrLabel66"),
  1599. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel67, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(448.3333F, 125.8332F)),
  1600. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel67, "Default", "SizeF", new System.Drawing.SizeF(173.3334F, 23.00001F)),
  1601. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel67, "Default", "Text", "xrLabel67"),
  1602. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel68, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(122.4999F, 125.8332F)),
  1603. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel68, "Default", "SizeF", new System.Drawing.SizeF(231.6666F, 22.99999F)),
  1604. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel68, "Default", "Text", "xrLabel2"),
  1605. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel69, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(122.4999F, 148.8332F)),
  1606. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel69, "Default", "SizeF", new System.Drawing.SizeF(231.6666F, 23F)),
  1607. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel69, "Default", "Text", "xrLabel69"),
  1608. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel7, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(491.6667F, 481.1667F)),
  1609. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel7, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(455.8332F, 403.1669F)),
  1610. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel7, "Default", "SizeF", new System.Drawing.SizeF(100F, 23F)),
  1611. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel7, "Default", "Text", "xrLabel7"),
  1612. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel7, "Default", "TextFormatString", "{0:d}"),
  1613. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel70, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1614. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel70, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(22.49995F, 171.8333F)),
  1615. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel70, "Default", "SizeF", new System.Drawing.SizeF(70.83334F, 23.00002F)),
  1616. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel70, "Default", "Text", "Position:"),
  1617. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel71, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(122.4999F, 171.8333F)),
  1618. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel71, "Default", "SizeF", new System.Drawing.SizeF(231.6666F, 23F)),
  1619. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel71, "Default", "Text", "xrLabel71"),
  1620. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel72, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(122.4999F, 347.0002F)),
  1621. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel72, "Default", "SizeF", new System.Drawing.SizeF(243.3334F, 23F)),
  1622. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel72, "Default", "Text", "xrLabel72"),
  1623. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel73, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(477.5F, 347.0002F)),
  1624. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel73, "Default", "SizeF", new System.Drawing.SizeF(170F, 23F)),
  1625. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel73, "Default", "Text", "xrLabel73"),
  1626. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel74, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1627. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel74, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(22.49995F, 347.0002F)),
  1628. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel74, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1629. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel74, "Default", "Text", "Work Country:"),
  1630. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel75, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1631. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel75, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(377.5F, 347.0002F)),
  1632. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel75, "Default", "SizeF", new System.Drawing.SizeF(100F, 23.00002F)),
  1633. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel75, "Default", "Text", "Work City:"),
  1634. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel76, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(166.6666F, 429.3337F)),
  1635. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel76, "Default", "SizeF", new System.Drawing.SizeF(455.0001F, 23.00003F)),
  1636. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel76, "Default", "Text", "xrLabel76"),
  1637. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel77, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1638. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel77, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 429.3337F)),
  1639. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel77, "Default", "SizeF", new System.Drawing.SizeF(113.3333F, 23.00003F)),
  1640. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel77, "Default", "Text", "Job Description:"),
  1641. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel78, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 9.75F, DevExpress.Drawing.DXFontStyle.Bold)),
  1642. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel78, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(377.5F, 255F)),
  1643. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel78, "Default", "SizeF", new System.Drawing.SizeF(85F, 23.00003F)),
  1644. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel78, "Default", "Text", "Expiry Date:"),
  1645. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel79, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(477.5F, 255F)),
  1646. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel79, "Default", "SizeF", new System.Drawing.SizeF(145F, 23F)),
  1647. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel79, "Default", "Text", "xrLabel79"),
  1648. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel79, "Default", "TextFormatString", "{0:d}"),
  1649. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel8, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 19F, DevExpress.Drawing.DXFontStyle.Bold)),
  1650. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel8, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(183.3333F, 26.66667F)),
  1651. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel8, "en-US", "LocationFloat", new DevExpress.Utils.PointFloat(183.3333F, 26.66667F)),
  1652. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel8, "Default", "SizeF", new System.Drawing.SizeF(272.4999F, 47.16666F)),
  1653. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel8, "en-US", "SizeF", new System.Drawing.SizeF(272.4999F, 47.16666F)),
  1654. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel8, "Default", "Text", "Employee Contract"),
  1655. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel9, "Default", "Font", new DevExpress.Drawing.DXFont("Arial", 12F, DevExpress.Drawing.DXFontStyle.Bold)),
  1656. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel9, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(21.66667F, 0F)),
  1657. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel9, "Default", "SizeF", new System.Drawing.SizeF(600F, 23F)),
  1658. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel9, "en-US", "SizeF", new System.Drawing.SizeF(618.3333F, 23F)),
  1659. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrLabel9, "Default", "Text", "Company Information:"),
  1660. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrSubreport1, "Default", "LocationFloat", new DevExpress.Utils.PointFloat(23.33323F, 688.1667F)),
  1661. new DevExpress.XtraReports.Localization.LocalizationItem(this.xrSubreport1, "Default", "SizeF", new System.Drawing.SizeF(599.1667F, 44.66663F))});
  1662. this.Parameters.AddRange(new DevExpress.XtraReports.Parameters.Parameter[] {
  1663. this.ContractId});
  1664. this.StyleSheet.AddRange(new DevExpress.XtraReports.UI.XRControlStyle[] {
  1665. this.xrControlStyle1});
  1666. this.Version = "24.1";
  1667. ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
  1668. }
  1669. #endregion
  1670. private DevExpress.XtraReports.UI.TopMarginBand TopMargin;
  1671. private DevExpress.XtraReports.UI.BottomMarginBand BottomMargin;
  1672. private DevExpress.XtraReports.UI.DetailBand Detail;
  1673. private DevExpress.DataAccess.Sql.SqlDataSource sqlDataSource1;
  1674. private DevExpress.XtraReports.Parameters.Parameter ContractId;
  1675. private DevExpress.XtraReports.UI.XRLabel xrLabel7;
  1676. private DevExpress.XtraReports.UI.XRLabel xrLabel6;
  1677. private DevExpress.XtraReports.UI.XRLabel xrLabel5;
  1678. private DevExpress.XtraReports.UI.XRLabel xrLabel2;
  1679. private DevExpress.XtraReports.UI.XRLabel xrLabel1;
  1680. private DevExpress.XtraReports.UI.XRLabel xrLabel8;
  1681. private DevExpress.XtraReports.UI.XRLabel xrLabel9;
  1682. private DevExpress.XtraReports.UI.XRLabel xrLabel11;
  1683. private DevExpress.XtraReports.UI.XRLabel xrLabel10;
  1684. private DevExpress.XtraReports.UI.XRLabel xrLabel15;
  1685. private DevExpress.XtraReports.UI.XRLabel xrLabel14;
  1686. private DevExpress.XtraReports.UI.XRLabel xrLabel12;
  1687. private DevExpress.XtraReports.UI.XRLabel xrLabel13;
  1688. private DevExpress.XtraReports.UI.XRLabel xrLabel17;
  1689. private DevExpress.XtraReports.UI.XRLabel xrLabel16;
  1690. private DevExpress.XtraReports.UI.XRLabel xrLabel20;
  1691. private DevExpress.XtraReports.UI.XRLabel xrLabel19;
  1692. private DevExpress.XtraReports.UI.XRLabel xrLabel18;
  1693. private DevExpress.XtraReports.UI.XRLabel xrLabel4;
  1694. private DevExpress.XtraReports.UI.XRLabel xrLabel27;
  1695. private DevExpress.XtraReports.UI.XRLabel xrLabel26;
  1696. private DevExpress.XtraReports.UI.XRLabel xrLabel25;
  1697. private DevExpress.XtraReports.UI.XRLabel xrLabel24;
  1698. private DevExpress.XtraReports.UI.XRLabel xrLabel23;
  1699. private DevExpress.XtraReports.UI.XRLabel xrLabel22;
  1700. private DevExpress.XtraReports.UI.XRLabel xrLabel21;
  1701. private DevExpress.XtraReports.UI.XRLabel xrLabel29;
  1702. private DevExpress.XtraReports.UI.XRLabel xrLabel28;
  1703. private DevExpress.XtraReports.UI.XRLabel xrLabel31;
  1704. private DevExpress.XtraReports.UI.XRLabel xrLabel30;
  1705. private DevExpress.XtraReports.UI.XRLabel xrLabel36;
  1706. private DevExpress.XtraReports.UI.XRLabel xrLabel35;
  1707. private DevExpress.XtraReports.UI.XRLabel xrLabel34;
  1708. private DevExpress.XtraReports.UI.XRLabel xrLabel33;
  1709. private DevExpress.XtraReports.UI.XRLabel xrLabel32;
  1710. private DevExpress.XtraReports.UI.XRLabel xrLabel41;
  1711. private DevExpress.XtraReports.UI.XRLabel xrLabel40;
  1712. private DevExpress.XtraReports.UI.XRLabel xrLabel39;
  1713. private DevExpress.XtraReports.UI.XRLabel xrLabel38;
  1714. private DevExpress.XtraReports.UI.XRLabel xrLabel37;
  1715. private DevExpress.XtraReports.UI.XRLabel xrLabel42;
  1716. private DevExpress.XtraReports.UI.XRLabel xrLabel44;
  1717. private DevExpress.XtraReports.UI.XRLabel xrLabel43;
  1718. private DevExpress.XtraReports.UI.XRLabel xrLabel46;
  1719. private DevExpress.XtraReports.UI.XRLabel xrLabel45;
  1720. private DevExpress.XtraReports.UI.XRLabel xrLabel50;
  1721. private DevExpress.XtraReports.UI.XRLabel xrLabel49;
  1722. private DevExpress.XtraReports.UI.XRLabel xrLabel48;
  1723. private DevExpress.XtraReports.UI.XRLabel xrLabel47;
  1724. private DevExpress.XtraReports.UI.XRLabel xrLabel51;
  1725. private DevExpress.XtraReports.UI.XRLabel xrLabel3;
  1726. private DevExpress.XtraReports.UI.XRControlStyle xrControlStyle1;
  1727. private DevExpress.XtraReports.UI.XRLabel xrLabel57;
  1728. private DevExpress.XtraReports.UI.XRLabel xrLabel56;
  1729. private DevExpress.XtraReports.UI.XRLabel xrLabel55;
  1730. private DevExpress.XtraReports.UI.XRLabel xrLabel54;
  1731. private DevExpress.XtraReports.UI.XRLabel xrLabel53;
  1732. private DevExpress.XtraReports.UI.XRLabel xrLabel52;
  1733. private DevExpress.XtraReports.UI.XRLabel xrLabel59;
  1734. private DevExpress.XtraReports.UI.XRLabel xrLabel58;
  1735. private DevExpress.XtraReports.UI.XRLabel xrLabel60;
  1736. private DevExpress.XtraReports.UI.XRSubreport xrSubreport1;
  1737. private DevExpress.XtraReports.UI.XRLabel xrLabel61;
  1738. private DevExpress.XtraReports.UI.XRLabel xrLabel67;
  1739. private DevExpress.XtraReports.UI.XRLabel xrLabel66;
  1740. private DevExpress.XtraReports.UI.XRLabel xrLabel62;
  1741. private DevExpress.XtraReports.UI.XRLabel xrLabel63;
  1742. private DevExpress.XtraReports.UI.XRLabel xrLabel64;
  1743. private DevExpress.XtraReports.UI.XRLabel xrLabel65;
  1744. private DevExpress.XtraReports.UI.XRLabel xrLabel69;
  1745. private DevExpress.XtraReports.UI.XRLabel xrLabel68;
  1746. private DevExpress.XtraReports.UI.XRLabel xrLabel71;
  1747. private DevExpress.XtraReports.UI.XRLabel xrLabel70;
  1748. private DevExpress.XtraReports.UI.XRLabel xrLabel75;
  1749. private DevExpress.XtraReports.UI.XRLabel xrLabel74;
  1750. private DevExpress.XtraReports.UI.XRLabel xrLabel73;
  1751. private DevExpress.XtraReports.UI.XRLabel xrLabel72;
  1752. private DevExpress.XtraReports.UI.XRLabel xrLabel77;
  1753. private DevExpress.XtraReports.UI.XRLabel xrLabel76;
  1754. private DevExpress.XtraReports.UI.XRLabel xrLabel79;
  1755. private DevExpress.XtraReports.UI.XRLabel xrLabel78;
  1756. }
  1757. }