EMIS.Entities.csproj 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{37E0EAA8-4A6E-46C4-86EF-0745373B1080}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>EMIS.Entities</RootNamespace>
  12. <AssemblyName>EMIS.Entities</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. <SccProjectName>
  16. </SccProjectName>
  17. <SccLocalPath>
  18. </SccLocalPath>
  19. <SccAuxPath>
  20. </SccAuxPath>
  21. <SccProvider>
  22. </SccProvider>
  23. </PropertyGroup>
  24. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  25. <DebugSymbols>true</DebugSymbols>
  26. <DebugType>full</DebugType>
  27. <Optimize>false</Optimize>
  28. <OutputPath>bin\Debug\</OutputPath>
  29. <DefineConstants>DEBUG;TRACE</DefineConstants>
  30. <ErrorReport>prompt</ErrorReport>
  31. <WarningLevel>4</WarningLevel>
  32. </PropertyGroup>
  33. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  34. <DebugType>pdbonly</DebugType>
  35. <Optimize>true</Optimize>
  36. <OutputPath>bin\Release\</OutputPath>
  37. <DefineConstants>TRACE</DefineConstants>
  38. <ErrorReport>prompt</ErrorReport>
  39. <WarningLevel>4</WarningLevel>
  40. </PropertyGroup>
  41. <ItemGroup>
  42. <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  43. <HintPath>..\packages\EntityFramework.6.1.3\lib\net40\EntityFramework.dll</HintPath>
  44. <Private>True</Private>
  45. </Reference>
  46. <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
  47. <HintPath>..\packages\EntityFramework.6.1.3\lib\net40\EntityFramework.SqlServer.dll</HintPath>
  48. <Private>True</Private>
  49. </Reference>
  50. <Reference Include="System" />
  51. <Reference Include="System.ComponentModel.DataAnnotations" />
  52. <Reference Include="System.Core" />
  53. <Reference Include="System.Data.Entity" />
  54. <Reference Include="System.Runtime.Serialization" />
  55. <Reference Include="System.Security" />
  56. <Reference Include="System.Xml.Linq" />
  57. <Reference Include="System.Data.DataSetExtensions" />
  58. <Reference Include="Microsoft.CSharp" />
  59. <Reference Include="System.Data" />
  60. <Reference Include="System.Xml" />
  61. </ItemGroup>
  62. <ItemGroup>
  63. <Compile Include="CF_ActivitiesSets.cs">
  64. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  65. </Compile>
  66. <Compile Include="CF_ActivitiesSets_Mapping.cs">
  67. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  68. </Compile>
  69. <Compile Include="CF_Arrangements.cs">
  70. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  71. </Compile>
  72. <Compile Include="CF_Arrangements_Mapping.cs">
  73. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  74. </Compile>
  75. <Compile Include="CF_BuildingsInfo.cs">
  76. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  77. </Compile>
  78. <Compile Include="CF_BuildingsInfo_Mapping.cs">
  79. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  80. </Compile>
  81. <Compile Include="CF_Campus.cs">
  82. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  83. </Compile>
  84. <Compile Include="CF_CampusProfile.cs">
  85. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  86. </Compile>
  87. <Compile Include="CF_CampusProfile_Mapping.cs">
  88. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  89. </Compile>
  90. <Compile Include="CF_Campus_Mapping.cs">
  91. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  92. </Compile>
  93. <Compile Include="CF_Classmajor.cs">
  94. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  95. </Compile>
  96. <Compile Include="CF_Classmajor_Mapping.cs">
  97. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  98. </Compile>
  99. <Compile Include="CF_Classminor.cs">
  100. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  101. </Compile>
  102. <Compile Include="CF_ClassminorStudent.cs">
  103. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  104. </Compile>
  105. <Compile Include="CF_ClassminorStudent_Mapping.cs">
  106. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  107. </Compile>
  108. <Compile Include="CF_Classminor_Mapping.cs">
  109. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  110. </Compile>
  111. <Compile Include="CF_Classroom.cs">
  112. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  113. </Compile>
  114. <Compile Include="CF_ClassroomType.cs">
  115. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  116. </Compile>
  117. <Compile Include="CF_ClassroomType_Mapping.cs">
  118. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  119. </Compile>
  120. <Compile Include="CF_Classroom_Mapping.cs">
  121. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  122. </Compile>
  123. <Compile Include="CF_College.cs">
  124. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  125. </Compile>
  126. <Compile Include="CF_CollegeProfile.cs">
  127. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  128. </Compile>
  129. <Compile Include="CF_CollegeProfile_Mapping.cs">
  130. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  131. </Compile>
  132. <Compile Include="CF_College_Mapping.cs">
  133. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  134. </Compile>
  135. <Compile Include="CF_CustomStandardSetting.cs">
  136. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  137. </Compile>
  138. <Compile Include="CF_CustomStandardSetting_Mapping.cs">
  139. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  140. </Compile>
  141. <Compile Include="CF_Department.cs">
  142. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  143. </Compile>
  144. <Compile Include="CF_DepartmentProfile.cs">
  145. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  146. </Compile>
  147. <Compile Include="CF_DepartmentProfile_Mapping.cs">
  148. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  149. </Compile>
  150. <Compile Include="CF_Department_Mapping.cs">
  151. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  152. </Compile>
  153. <Compile Include="CF_DifferentDynamic.cs">
  154. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  155. </Compile>
  156. <Compile Include="CF_DifferentDynamicReport.cs">
  157. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  158. </Compile>
  159. <Compile Include="CF_DifferentDynamicReportType.cs">
  160. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  161. </Compile>
  162. <Compile Include="CF_DifferentDynamicReportType_Mapping.cs">
  163. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  164. </Compile>
  165. <Compile Include="CF_DifferentDynamicReport_Mapping.cs">
  166. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  167. </Compile>
  168. <Compile Include="CF_DifferentDynamicTypeInOutSetting.cs">
  169. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  170. </Compile>
  171. <Compile Include="CF_DifferentDynamicTypeInOutSetting_Mapping.cs">
  172. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  173. </Compile>
  174. <Compile Include="CF_DifferentDynamic_Mapping.cs">
  175. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  176. </Compile>
  177. <Compile Include="CF_EducationTypeSetting.cs">
  178. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  179. </Compile>
  180. <Compile Include="CF_EducationTypeSetting_Mapping.cs">
  181. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  182. </Compile>
  183. <Compile Include="CF_Facultymajor.cs">
  184. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  185. </Compile>
  186. <Compile Include="CF_Facultymajor_Mapping.cs">
  187. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  188. </Compile>
  189. <Compile Include="CF_Grademajor.cs">
  190. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  191. </Compile>
  192. <Compile Include="CF_Grademajor_Mapping.cs">
  193. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  194. </Compile>
  195. <Compile Include="CF_Grademinor.cs">
  196. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  197. </Compile>
  198. <Compile Include="CF_GrademinorApplication.cs">
  199. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  200. </Compile>
  201. <Compile Include="CF_GrademinorApplication_Mapping.cs">
  202. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  203. </Compile>
  204. <Compile Include="CF_Grademinor_Mapping.cs">
  205. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  206. </Compile>
  207. <Compile Include="CF_InSchoolSetting.cs">
  208. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  209. </Compile>
  210. <Compile Include="CF_InSchoolSetting_Mapping.cs">
  211. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  212. </Compile>
  213. <Compile Include="CF_Library.cs">
  214. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  215. </Compile>
  216. <Compile Include="CF_Library_Mapping.cs">
  217. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  218. </Compile>
  219. <Compile Include="CF_MinorStandardSetting.cs">
  220. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  221. </Compile>
  222. <Compile Include="CF_MinorStandardSetting_Mapping.cs">
  223. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  224. </Compile>
  225. <Compile Include="CF_NewStudent.cs">
  226. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  227. </Compile>
  228. <Compile Include="CF_NewStudent_Mapping.cs">
  229. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  230. </Compile>
  231. <Compile Include="CF_Parameter.cs">
  232. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  233. </Compile>
  234. <Compile Include="CF_Parameter_Mapping.cs">
  235. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  236. </Compile>
  237. <Compile Include="CF_Publish.cs">
  238. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  239. </Compile>
  240. <Compile Include="CF_Publish_Mapping.cs">
  241. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  242. </Compile>
  243. <Compile Include="CF_RecruitSpecialty.cs">
  244. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  245. </Compile>
  246. <Compile Include="CF_RecruitSpecialty_Mapping.cs">
  247. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  248. </Compile>
  249. <Compile Include="CF_Recruitstudents.cs">
  250. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  251. </Compile>
  252. <Compile Include="CF_RecruitstudentsContrast.cs">
  253. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  254. </Compile>
  255. <Compile Include="CF_RecruitstudentsContrast_Mapping.cs">
  256. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  257. </Compile>
  258. <Compile Include="CF_RecruitstudentsSource.cs">
  259. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  260. </Compile>
  261. <Compile Include="CF_RecruitstudentsSource_Mapping.cs">
  262. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  263. </Compile>
  264. <Compile Include="CF_Recruitstudents_Mapping.cs">
  265. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  266. </Compile>
  267. <Compile Include="CF_SCalendar.cs">
  268. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  269. </Compile>
  270. <Compile Include="CF_SCalendar_Mapping.cs">
  271. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  272. </Compile>
  273. <Compile Include="CF_Schoolyear.cs">
  274. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  275. </Compile>
  276. <Compile Include="CF_Schoolyear_Mapping.cs">
  277. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  278. </Compile>
  279. <Compile Include="CF_Specialty.cs">
  280. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  281. </Compile>
  282. <Compile Include="CF_SpecialtyApply.cs">
  283. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  284. </Compile>
  285. <Compile Include="CF_SpecialtyApply_Mapping.cs">
  286. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  287. </Compile>
  288. <Compile Include="CF_SpecialtyClassSetting.cs">
  289. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  290. </Compile>
  291. <Compile Include="CF_SpecialtyClassSetting_Mapping.cs">
  292. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  293. </Compile>
  294. <Compile Include="CF_Specialty_Mapping.cs">
  295. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  296. </Compile>
  297. <Compile Include="CF_Staff.cs">
  298. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  299. </Compile>
  300. <Compile Include="CF_StaffManageCampus.cs">
  301. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  302. </Compile>
  303. <Compile Include="CF_StaffManageCampus_Mapping.cs">
  304. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  305. </Compile>
  306. <Compile Include="CF_StaffManageCollege.cs">
  307. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  308. </Compile>
  309. <Compile Include="CF_StaffManageCollege_Mapping.cs">
  310. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  311. </Compile>
  312. <Compile Include="CF_StaffManageDepartment.cs">
  313. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  314. </Compile>
  315. <Compile Include="CF_StaffManageDepartment_Mapping.cs">
  316. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  317. </Compile>
  318. <Compile Include="CF_StaffProfile.cs">
  319. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  320. </Compile>
  321. <Compile Include="CF_StaffProfile_Mapping.cs">
  322. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  323. </Compile>
  324. <Compile Include="CF_Staff_Mapping.cs">
  325. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  326. </Compile>
  327. <Compile Include="CF_Staff_Schoolclas.cs">
  328. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  329. </Compile>
  330. <Compile Include="CF_Staff_Schoolclas_Mapping.cs">
  331. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  332. </Compile>
  333. <Compile Include="CF_Student.cs">
  334. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  335. </Compile>
  336. <Compile Include="CF_StudentAccount.cs">
  337. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  338. </Compile>
  339. <Compile Include="CF_StudentAccountContrast.cs">
  340. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  341. </Compile>
  342. <Compile Include="CF_StudentAccountContrast_Mapping.cs">
  343. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  344. </Compile>
  345. <Compile Include="CF_StudentAccountSource.cs">
  346. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  347. </Compile>
  348. <Compile Include="CF_StudentAccountSource_Mapping.cs">
  349. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  350. </Compile>
  351. <Compile Include="CF_StudentAccount_Mapping.cs">
  352. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  353. </Compile>
  354. <Compile Include="CF_StudentContact.cs">
  355. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  356. </Compile>
  357. <Compile Include="CF_StudentContactContrast.cs">
  358. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  359. </Compile>
  360. <Compile Include="CF_StudentContactContrast_Mapping.cs">
  361. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  362. </Compile>
  363. <Compile Include="CF_StudentContactSource.cs">
  364. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  365. </Compile>
  366. <Compile Include="CF_StudentContactSource_Mapping.cs">
  367. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  368. </Compile>
  369. <Compile Include="CF_StudentContact_Mapping.cs">
  370. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  371. </Compile>
  372. <Compile Include="CF_StudentContrast.cs">
  373. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  374. </Compile>
  375. <Compile Include="CF_StudentContrast_Mapping.cs">
  376. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  377. </Compile>
  378. <Compile Include="CF_StudentEditColumnDescription.cs">
  379. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  380. </Compile>
  381. <Compile Include="CF_StudentEditColumnDescription_Mapping.cs">
  382. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  383. </Compile>
  384. <Compile Include="CF_StudentEditControl.cs">
  385. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  386. </Compile>
  387. <Compile Include="CF_StudentEditControl_Mapping.cs">
  388. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  389. </Compile>
  390. <Compile Include="CF_StudentEditObjects.cs">
  391. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  392. </Compile>
  393. <Compile Include="CF_StudentEditObjects_Mapping.cs">
  394. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  395. </Compile>
  396. <Compile Include="CF_StudentExperience.cs">
  397. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  398. </Compile>
  399. <Compile Include="CF_StudentExperience_Mapping.cs">
  400. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  401. </Compile>
  402. <Compile Include="CF_StudentFamily.cs">
  403. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  404. </Compile>
  405. <Compile Include="CF_StudentFamily_Mapping.cs">
  406. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  407. </Compile>
  408. <Compile Include="CF_StudentPostPractice.cs">
  409. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  410. </Compile>
  411. <Compile Include="CF_StudentPostPractice_Mapping.cs">
  412. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  413. </Compile>
  414. <Compile Include="CF_StudentProfile.cs">
  415. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  416. </Compile>
  417. <Compile Include="CF_StudentProfileContrast.cs">
  418. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  419. </Compile>
  420. <Compile Include="CF_StudentProfileContrast_Mapping.cs">
  421. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  422. </Compile>
  423. <Compile Include="CF_StudentProfileSource.cs">
  424. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  425. </Compile>
  426. <Compile Include="CF_StudentProfileSource_Mapping.cs">
  427. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  428. </Compile>
  429. <Compile Include="CF_StudentProfile_Mapping.cs">
  430. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  431. </Compile>
  432. <Compile Include="CF_StudentRecordChangeHistory.cs">
  433. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  434. </Compile>
  435. <Compile Include="CF_StudentRecordChangeHistory_Mapping.cs">
  436. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  437. </Compile>
  438. <Compile Include="CF_StudentRole.cs">
  439. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  440. </Compile>
  441. <Compile Include="CF_StudentRole_Mapping.cs">
  442. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  443. </Compile>
  444. <Compile Include="CF_StudentSource.cs">
  445. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  446. </Compile>
  447. <Compile Include="CF_StudentSource_Mapping.cs">
  448. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  449. </Compile>
  450. <Compile Include="CF_Student_Mapping.cs">
  451. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  452. </Compile>
  453. <Compile Include="CF_TeacherTypeSetting.cs">
  454. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  455. </Compile>
  456. <Compile Include="CF_TeacherTypeSetting_Mapping.cs">
  457. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  458. </Compile>
  459. <Compile Include="CF_TeachingMaterialPool.cs">
  460. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  461. </Compile>
  462. <Compile Include="CF_TeachingMaterialPool_Mapping.cs">
  463. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  464. </Compile>
  465. <Compile Include="CF_University.cs">
  466. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  467. </Compile>
  468. <Compile Include="CF_UniversityProfile.cs">
  469. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  470. </Compile>
  471. <Compile Include="CF_UniversityProfile_Mapping.cs">
  472. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  473. </Compile>
  474. <Compile Include="CF_University_Mapping.cs">
  475. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  476. </Compile>
  477. <Compile Include="DbFunctions.cs" />
  478. <Compile Include="DQP_Document.cs">
  479. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  480. </Compile>
  481. <Compile Include="DQP_Document_Mapping.cs">
  482. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  483. </Compile>
  484. <Compile Include="DQP_SOC.cs">
  485. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  486. </Compile>
  487. <Compile Include="DQP_SOCDetail.cs">
  488. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  489. </Compile>
  490. <Compile Include="DQP_SOCDetailAttachment.cs">
  491. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  492. </Compile>
  493. <Compile Include="DQP_SOCDetailAttachment_Mapping.cs">
  494. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  495. </Compile>
  496. <Compile Include="DQP_SOCDetailGroup.cs">
  497. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  498. </Compile>
  499. <Compile Include="DQP_SOCDetailGroup_Mapping.cs">
  500. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  501. </Compile>
  502. <Compile Include="DQP_SOCDetailStudent.cs">
  503. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  504. </Compile>
  505. <Compile Include="DQP_SOCDetailStudentAttachment.cs">
  506. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  507. </Compile>
  508. <Compile Include="DQP_SOCDetailStudentAttachment_Mapping.cs">
  509. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  510. </Compile>
  511. <Compile Include="DQP_SOCDetailStudentScore.cs">
  512. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  513. </Compile>
  514. <Compile Include="DQP_SOCDetailStudentScore_Mapping.cs">
  515. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  516. </Compile>
  517. <Compile Include="DQP_SOCDetailStudent_Mapping.cs">
  518. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  519. </Compile>
  520. <Compile Include="DQP_SOCDetail_Mapping.cs">
  521. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  522. </Compile>
  523. <Compile Include="DQP_SOCStaff.cs">
  524. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  525. </Compile>
  526. <Compile Include="DQP_SOCStaff_Mapping.cs">
  527. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  528. </Compile>
  529. <Compile Include="DQP_SOCTemplate.cs">
  530. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  531. </Compile>
  532. <Compile Include="DQP_SOCTemplateDetail.cs">
  533. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  534. </Compile>
  535. <Compile Include="DQP_SOCTemplateDetailAttachment.cs">
  536. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  537. </Compile>
  538. <Compile Include="DQP_SOCTemplateDetailAttachment_Mapping.cs">
  539. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  540. </Compile>
  541. <Compile Include="DQP_SOCTemplateDetail_Mapping.cs">
  542. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  543. </Compile>
  544. <Compile Include="DQP_SOCTemplate_Mapping.cs">
  545. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  546. </Compile>
  547. <Compile Include="DQP_SOC_Mapping.cs">
  548. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  549. </Compile>
  550. <Compile Include="EC_ChargeDelay.cs">
  551. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  552. </Compile>
  553. <Compile Include="EC_ChargeDelay_Mapping.cs">
  554. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  555. </Compile>
  556. <Compile Include="EC_ChargeProject.cs">
  557. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  558. </Compile>
  559. <Compile Include="EC_ChargeProject_Mapping.cs">
  560. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  561. </Compile>
  562. <Compile Include="EC_ChargeStandard.cs">
  563. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  564. </Compile>
  565. <Compile Include="EC_ChargeStandard_Mapping.cs">
  566. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  567. </Compile>
  568. <Compile Include="EC_PassStudent.cs">
  569. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  570. </Compile>
  571. <Compile Include="EC_PassStudent_Mapping.cs">
  572. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  573. </Compile>
  574. <Compile Include="EC_StudentCharge.cs">
  575. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  576. </Compile>
  577. <Compile Include="EC_StudentChargePayment.cs">
  578. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  579. </Compile>
  580. <Compile Include="EC_StudentChargePayment_Mapping.cs">
  581. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  582. </Compile>
  583. <Compile Include="EC_StudentCharge_Mapping.cs">
  584. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  585. </Compile>
  586. <Compile Include="EMIS.Entities.Context.cs">
  587. <AutoGen>True</AutoGen>
  588. <DesignTime>True</DesignTime>
  589. <DependentUpon>EMIS.Entities.Context.tt</DependentUpon>
  590. </Compile>
  591. <Compile Include="EMIS.Entities.cs">
  592. <AutoGen>True</AutoGen>
  593. <DesignTime>True</DesignTime>
  594. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  595. </Compile>
  596. <Compile Include="EMIS.Entitis.Mapping.cs">
  597. <AutoGen>True</AutoGen>
  598. <DesignTime>True</DesignTime>
  599. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  600. </Compile>
  601. <Compile Include="EM_ClassGrouping.cs">
  602. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  603. </Compile>
  604. <Compile Include="EM_ClassGroupingSettings.cs">
  605. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  606. </Compile>
  607. <Compile Include="EM_ClassGroupingSettings_Mapping.cs">
  608. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  609. </Compile>
  610. <Compile Include="EM_ClassGrouping_Mapping.cs">
  611. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  612. </Compile>
  613. <Compile Include="EM_Coursematerial.cs">
  614. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  615. </Compile>
  616. <Compile Include="EM_Coursematerial_Mapping.cs">
  617. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  618. </Compile>
  619. <Compile Include="EM_CourseProcess.cs">
  620. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  621. </Compile>
  622. <Compile Include="EM_CourseProcessTeacher.cs">
  623. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  624. </Compile>
  625. <Compile Include="EM_CourseProcessTeacher_Mapping.cs">
  626. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  627. </Compile>
  628. <Compile Include="EM_CourseProcess_Mapping.cs">
  629. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  630. </Compile>
  631. <Compile Include="EM_CourseSpeedprogress.cs">
  632. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  633. </Compile>
  634. <Compile Include="EM_CourseSpeedprogress_Mapping.cs">
  635. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  636. </Compile>
  637. <Compile Include="EM_CoursesTime.cs">
  638. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  639. </Compile>
  640. <Compile Include="EM_CoursesTime_Mapping.cs">
  641. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  642. </Compile>
  643. <Compile Include="EM_CourseTypeSelectCourseType.cs">
  644. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  645. </Compile>
  646. <Compile Include="EM_CourseTypeSelectCourseType_Mapping.cs">
  647. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  648. </Compile>
  649. <Compile Include="EM_duty.cs">
  650. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  651. </Compile>
  652. <Compile Include="EM_duty_Mapping.cs">
  653. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  654. </Compile>
  655. <Compile Include="EM_EducationMission.cs">
  656. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  657. </Compile>
  658. <Compile Include="EM_EducationMissionClass.cs">
  659. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  660. </Compile>
  661. <Compile Include="EM_EducationMissionClassCheck.cs">
  662. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  663. </Compile>
  664. <Compile Include="EM_EducationMissionClassCheck_Mapping.cs">
  665. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  666. </Compile>
  667. <Compile Include="EM_EducationMissionClassSettings.cs">
  668. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  669. </Compile>
  670. <Compile Include="EM_EducationMissionClassSettings_Mapping.cs">
  671. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  672. </Compile>
  673. <Compile Include="EM_EducationMissionClassTeachingSetting.cs">
  674. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  675. </Compile>
  676. <Compile Include="EM_EducationMissionClassTeachingSetting_Mapping.cs">
  677. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  678. </Compile>
  679. <Compile Include="EM_EducationMissionClass_Mapping.cs">
  680. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  681. </Compile>
  682. <Compile Include="EM_EducationMissionExamTime.cs">
  683. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  684. </Compile>
  685. <Compile Include="EM_EducationMissionExamTime_Mapping.cs">
  686. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  687. </Compile>
  688. <Compile Include="EM_EducationMissionExamWeekNum.cs">
  689. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  690. </Compile>
  691. <Compile Include="EM_EducationMissionExamWeekNum_Mapping.cs">
  692. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  693. </Compile>
  694. <Compile Include="EM_EducationMissionOpenControl.cs">
  695. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  696. </Compile>
  697. <Compile Include="EM_EducationMissionOpenControl_Mapping.cs">
  698. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  699. </Compile>
  700. <Compile Include="EM_EducationMission_Mapping.cs">
  701. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  702. </Compile>
  703. <Compile Include="EM_EducationSchedulingClass.cs">
  704. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  705. </Compile>
  706. <Compile Include="EM_EducationSchedulingClass_Mapping.cs">
  707. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  708. </Compile>
  709. <Compile Include="EM_EvaluationCollegeScore.cs">
  710. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  711. </Compile>
  712. <Compile Include="EM_EvaluationCollegeScore_Mapping.cs">
  713. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  714. </Compile>
  715. <Compile Include="EM_EvaluationControl.cs">
  716. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  717. </Compile>
  718. <Compile Include="EM_EvaluationControl_Mapping.cs">
  719. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  720. </Compile>
  721. <Compile Include="EM_EvaluationEnter.cs">
  722. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  723. </Compile>
  724. <Compile Include="EM_EvaluationEnter_EM_EvaluationProject.cs">
  725. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  726. </Compile>
  727. <Compile Include="EM_EvaluationEnter_EM_EvaluationProject_Mapping.cs">
  728. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  729. </Compile>
  730. <Compile Include="EM_EvaluationEnter_Mapping.cs">
  731. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  732. </Compile>
  733. <Compile Include="EM_EvaluationGradeControl.cs">
  734. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  735. </Compile>
  736. <Compile Include="EM_EvaluationGradeControl_Mapping.cs">
  737. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  738. </Compile>
  739. <Compile Include="EM_EvaluationIntType.cs">
  740. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  741. </Compile>
  742. <Compile Include="EM_EvaluationIntType_Mapping.cs">
  743. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  744. </Compile>
  745. <Compile Include="EM_EvaluationNeed.cs">
  746. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  747. </Compile>
  748. <Compile Include="EM_EvaluationNeed_Mapping.cs">
  749. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  750. </Compile>
  751. <Compile Include="EM_EvaluationNorm.cs">
  752. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  753. </Compile>
  754. <Compile Include="EM_EvaluationNormDetail.cs">
  755. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  756. </Compile>
  757. <Compile Include="EM_EvaluationNormDetail_Mapping.cs">
  758. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  759. </Compile>
  760. <Compile Include="EM_EvaluationNorm_Mapping.cs">
  761. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  762. </Compile>
  763. <Compile Include="EM_EvaluationParticipateType.cs">
  764. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  765. </Compile>
  766. <Compile Include="EM_EvaluationParticipateType_Mapping.cs">
  767. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  768. </Compile>
  769. <Compile Include="EM_EvaluationProject.cs">
  770. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  771. </Compile>
  772. <Compile Include="EM_EvaluationProject_Mapping.cs">
  773. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  774. </Compile>
  775. <Compile Include="EM_EvaluationSetting.cs">
  776. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  777. </Compile>
  778. <Compile Include="EM_EvaluationSetting_Mapping.cs">
  779. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  780. </Compile>
  781. <Compile Include="EM_EvaluationStaffScore.cs">
  782. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  783. </Compile>
  784. <Compile Include="EM_EvaluationStaffScoreDetail.cs">
  785. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  786. </Compile>
  787. <Compile Include="EM_EvaluationStaffScoreDetail_Mapping.cs">
  788. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  789. </Compile>
  790. <Compile Include="EM_EvaluationStaffScore_Mapping.cs">
  791. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  792. </Compile>
  793. <Compile Include="EM_EvaluationStudent.cs">
  794. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  795. </Compile>
  796. <Compile Include="EM_EvaluationStudentDetail.cs">
  797. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  798. </Compile>
  799. <Compile Include="EM_EvaluationStudentDetail_Mapping.cs">
  800. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  801. </Compile>
  802. <Compile Include="EM_EvaluationStudentScore.cs">
  803. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  804. </Compile>
  805. <Compile Include="EM_EvaluationStudentScore_Mapping.cs">
  806. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  807. </Compile>
  808. <Compile Include="EM_EvaluationStudentSetting.cs">
  809. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  810. </Compile>
  811. <Compile Include="EM_EvaluationStudentSettingScore.cs">
  812. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  813. </Compile>
  814. <Compile Include="EM_EvaluationStudentSettingScore_Mapping.cs">
  815. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  816. </Compile>
  817. <Compile Include="EM_EvaluationStudentSetting_Mapping.cs">
  818. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  819. </Compile>
  820. <Compile Include="EM_EvaluationStudent_Mapping.cs">
  821. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  822. </Compile>
  823. <Compile Include="EM_EvaluationTable.cs">
  824. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  825. </Compile>
  826. <Compile Include="EM_EvaluationTable_Mapping.cs">
  827. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  828. </Compile>
  829. <Compile Include="EM_EvaluationTarget.cs">
  830. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  831. </Compile>
  832. <Compile Include="EM_EvaluationTarget_Mapping.cs">
  833. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  834. </Compile>
  835. <Compile Include="EM_EvaluationTeachingMode.cs">
  836. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  837. </Compile>
  838. <Compile Include="EM_EvaluationTeachingMode_Mapping.cs">
  839. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  840. </Compile>
  841. <Compile Include="EM_EvaluationType.cs">
  842. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  843. </Compile>
  844. <Compile Include="EM_EvaluationType_Mapping.cs">
  845. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  846. </Compile>
  847. <Compile Include="EM_ExecutableFreeSelectionCouse.cs">
  848. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  849. </Compile>
  850. <Compile Include="EM_ExecutableFreeSelectionCouseGradeYear.cs">
  851. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  852. </Compile>
  853. <Compile Include="EM_ExecutableFreeSelectionCouseGradeYear_Mapping.cs">
  854. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  855. </Compile>
  856. <Compile Include="EM_ExecutableFreeSelectionCouseScheduling.cs">
  857. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  858. </Compile>
  859. <Compile Include="EM_ExecutableFreeSelectionCouseScheduling_Mapping.cs">
  860. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  861. </Compile>
  862. <Compile Include="EM_ExecutableFreeSelectionCouseSpecialty.cs">
  863. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  864. </Compile>
  865. <Compile Include="EM_ExecutableFreeSelectionCouseSpecialty_Mapping.cs">
  866. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  867. </Compile>
  868. <Compile Include="EM_ExecutableFreeSelectionCouseTeacher.cs">
  869. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  870. </Compile>
  871. <Compile Include="EM_ExecutableFreeSelectionCouseTeacher_Mapping.cs">
  872. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  873. </Compile>
  874. <Compile Include="EM_ExecutableFreeSelectionCouseTeachingMode.cs">
  875. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  876. </Compile>
  877. <Compile Include="EM_ExecutableFreeSelectionCouseTeachingMode_Mapping.cs">
  878. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  879. </Compile>
  880. <Compile Include="EM_ExecutableFreeSelectionCouseTeachingSetting.cs">
  881. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  882. </Compile>
  883. <Compile Include="EM_ExecutableFreeSelectionCouseTeachingSetting_Mapping.cs">
  884. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  885. </Compile>
  886. <Compile Include="EM_ExecutableFreeSelectionCouse_Mapping.cs">
  887. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  888. </Compile>
  889. <Compile Include="EM_ExecutableMinorPlan.cs">
  890. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  891. </Compile>
  892. <Compile Include="EM_ExecutableMinorPlanTeachingModeType.cs">
  893. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  894. </Compile>
  895. <Compile Include="EM_ExecutableMinorPlanTeachingModeType_Mapping.cs">
  896. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  897. </Compile>
  898. <Compile Include="EM_ExecutableMinorPlanTeachingPlace.cs">
  899. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  900. </Compile>
  901. <Compile Include="EM_ExecutableMinorPlanTeachingPlace_Mapping.cs">
  902. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  903. </Compile>
  904. <Compile Include="EM_ExecutableMinorPlanTeachingSetting.cs">
  905. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  906. </Compile>
  907. <Compile Include="EM_ExecutableMinorPlanTeachingSetting_Mapping.cs">
  908. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  909. </Compile>
  910. <Compile Include="EM_ExecutableMinorPlan_Mapping.cs">
  911. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  912. </Compile>
  913. <Compile Include="EM_ExecutableOptionalCourse.cs">
  914. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  915. </Compile>
  916. <Compile Include="EM_ExecutableOptionalCourseTeacher.cs">
  917. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  918. </Compile>
  919. <Compile Include="EM_ExecutableOptionalCourseTeacher_Mapping.cs">
  920. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  921. </Compile>
  922. <Compile Include="EM_ExecutableOptionalCourseTeachingMode.cs">
  923. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  924. </Compile>
  925. <Compile Include="EM_ExecutableOptionalCourseTeachingMode_Mapping.cs">
  926. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  927. </Compile>
  928. <Compile Include="EM_ExecutableOptionalCourseTeachingSetting.cs">
  929. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  930. </Compile>
  931. <Compile Include="EM_ExecutableOptionalCourseTeachingSetting_Mapping.cs">
  932. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  933. </Compile>
  934. <Compile Include="EM_ExecutableOptionalCourse_Mapping.cs">
  935. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  936. </Compile>
  937. <Compile Include="EM_ExecutablePlan.cs">
  938. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  939. </Compile>
  940. <Compile Include="EM_ExecutablePlanProfile.cs">
  941. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  942. </Compile>
  943. <Compile Include="EM_ExecutablePlanProfile_Mapping.cs">
  944. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  945. </Compile>
  946. <Compile Include="EM_ExecutablePlanTeachingModeType.cs">
  947. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  948. </Compile>
  949. <Compile Include="EM_ExecutablePlanTeachingModeType_Mapping.cs">
  950. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  951. </Compile>
  952. <Compile Include="EM_ExecutablePlanTeachingPlace.cs">
  953. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  954. </Compile>
  955. <Compile Include="EM_ExecutablePlanTeachingPlace_Mapping.cs">
  956. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  957. </Compile>
  958. <Compile Include="EM_ExecutablePlanTeachingSetting.cs">
  959. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  960. </Compile>
  961. <Compile Include="EM_ExecutablePlanTeachingSetting_Mapping.cs">
  962. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  963. </Compile>
  964. <Compile Include="EM_ExecutablePlan_Mapping.cs">
  965. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  966. </Compile>
  967. <Compile Include="EM_FreeSelectionCourseGradeYearSetting.cs">
  968. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  969. </Compile>
  970. <Compile Include="EM_FreeSelectionCourseGradeYearSetting_Mapping.cs">
  971. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  972. </Compile>
  973. <Compile Include="EM_FreeSelectionCouse.cs">
  974. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  975. </Compile>
  976. <Compile Include="EM_FreeSelectionCouseApply.cs">
  977. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  978. </Compile>
  979. <Compile Include="EM_FreeSelectionCouseApplyGradeYear.cs">
  980. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  981. </Compile>
  982. <Compile Include="EM_FreeSelectionCouseApplyGradeYear_Mapping.cs">
  983. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  984. </Compile>
  985. <Compile Include="EM_FreeSelectionCouseApplyScheduling.cs">
  986. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  987. </Compile>
  988. <Compile Include="EM_FreeSelectionCouseApplyScheduling_Mapping.cs">
  989. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  990. </Compile>
  991. <Compile Include="EM_FreeSelectionCouseApplySpecialty.cs">
  992. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  993. </Compile>
  994. <Compile Include="EM_FreeSelectionCouseApplySpecialty_Mapping.cs">
  995. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  996. </Compile>
  997. <Compile Include="EM_FreeSelectionCouseApplyTeacher.cs">
  998. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  999. </Compile>
  1000. <Compile Include="EM_FreeSelectionCouseApplyTeacher_Mapping.cs">
  1001. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1002. </Compile>
  1003. <Compile Include="EM_FreeSelectionCouseApplyTeachingMode.cs">
  1004. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1005. </Compile>
  1006. <Compile Include="EM_FreeSelectionCouseApplyTeachingMode_Mapping.cs">
  1007. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1008. </Compile>
  1009. <Compile Include="EM_FreeSelectionCouseApplyTeachingSetting.cs">
  1010. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1011. </Compile>
  1012. <Compile Include="EM_FreeSelectionCouseApplyTeachingSetting_Mapping.cs">
  1013. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1014. </Compile>
  1015. <Compile Include="EM_FreeSelectionCouseApply_Mapping.cs">
  1016. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1017. </Compile>
  1018. <Compile Include="EM_FreeSelectionCouseTeachingMode.cs">
  1019. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1020. </Compile>
  1021. <Compile Include="EM_FreeSelectionCouseTeachingMode_Mapping.cs">
  1022. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1023. </Compile>
  1024. <Compile Include="EM_FreeSelectionCouseTeachingSetting.cs">
  1025. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1026. </Compile>
  1027. <Compile Include="EM_FreeSelectionCouseTeachingSetting_Mapping.cs">
  1028. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1029. </Compile>
  1030. <Compile Include="EM_FreeSelectionCouse_Mapping.cs">
  1031. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1032. </Compile>
  1033. <Compile Include="EM_MinorCourse.cs">
  1034. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1035. </Compile>
  1036. <Compile Include="EM_MinorCourseTeachingModeType.cs">
  1037. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1038. </Compile>
  1039. <Compile Include="EM_MinorCourseTeachingModeType_Mapping.cs">
  1040. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1041. </Compile>
  1042. <Compile Include="EM_MinorCourseTeachingPlace.cs">
  1043. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1044. </Compile>
  1045. <Compile Include="EM_MinorCourseTeachingPlace_Mapping.cs">
  1046. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1047. </Compile>
  1048. <Compile Include="EM_MinorCourseTeachingSetting.cs">
  1049. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1050. </Compile>
  1051. <Compile Include="EM_MinorCourseTeachingSetting_Mapping.cs">
  1052. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1053. </Compile>
  1054. <Compile Include="EM_MinorCourse_Mapping.cs">
  1055. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1056. </Compile>
  1057. <Compile Include="EM_MinorPlan.cs">
  1058. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1059. </Compile>
  1060. <Compile Include="EM_MinorPlanApplication.cs">
  1061. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1062. </Compile>
  1063. <Compile Include="EM_MinorPlanApplicationTeachingModeType.cs">
  1064. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1065. </Compile>
  1066. <Compile Include="EM_MinorPlanApplicationTeachingModeType_Mapping.cs">
  1067. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1068. </Compile>
  1069. <Compile Include="EM_MinorPlanApplicationTeachingPlace.cs">
  1070. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1071. </Compile>
  1072. <Compile Include="EM_MinorPlanApplicationTeachingPlace_Mapping.cs">
  1073. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1074. </Compile>
  1075. <Compile Include="EM_MinorPlanApplicationTeachingSetting.cs">
  1076. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1077. </Compile>
  1078. <Compile Include="EM_MinorPlanApplicationTeachingSetting_Mapping.cs">
  1079. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1080. </Compile>
  1081. <Compile Include="EM_MinorPlanApplication_Mapping.cs">
  1082. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1083. </Compile>
  1084. <Compile Include="EM_MinorPlanTeachingModeType.cs">
  1085. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1086. </Compile>
  1087. <Compile Include="EM_MinorPlanTeachingModeType_Mapping.cs">
  1088. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1089. </Compile>
  1090. <Compile Include="EM_MinorPlanTeachingPlace.cs">
  1091. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1092. </Compile>
  1093. <Compile Include="EM_MinorPlanTeachingPlace_Mapping.cs">
  1094. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1095. </Compile>
  1096. <Compile Include="EM_MinorPlanTeachingSetting.cs">
  1097. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1098. </Compile>
  1099. <Compile Include="EM_MinorPlanTeachingSetting_Mapping.cs">
  1100. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1101. </Compile>
  1102. <Compile Include="EM_MinorPlan_Mapping.cs">
  1103. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1104. </Compile>
  1105. <Compile Include="EM_MissionClassTeacher.cs">
  1106. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1107. </Compile>
  1108. <Compile Include="EM_MissionClassTeacher_Mapping.cs">
  1109. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1110. </Compile>
  1111. <Compile Include="EM_OptionalCoursePlan.cs">
  1112. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1113. </Compile>
  1114. <Compile Include="EM_OptionalCoursePlanTeachingMode.cs">
  1115. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1116. </Compile>
  1117. <Compile Include="EM_OptionalCoursePlanTeachingMode_Mapping.cs">
  1118. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1119. </Compile>
  1120. <Compile Include="EM_OptionalCoursePlanTeachingSetting.cs">
  1121. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1122. </Compile>
  1123. <Compile Include="EM_OptionalCoursePlanTeachingSetting_Mapping.cs">
  1124. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1125. </Compile>
  1126. <Compile Include="EM_OptionalCoursePlan_Mapping.cs">
  1127. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1128. </Compile>
  1129. <Compile Include="EM_PlanApplication.cs">
  1130. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1131. </Compile>
  1132. <Compile Include="EM_PlanApplicationTeachingModeType.cs">
  1133. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1134. </Compile>
  1135. <Compile Include="EM_PlanApplicationTeachingModeType_Mapping.cs">
  1136. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1137. </Compile>
  1138. <Compile Include="EM_PlanApplicationTeachingPlace.cs">
  1139. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1140. </Compile>
  1141. <Compile Include="EM_PlanApplicationTeachingPlace_Mapping.cs">
  1142. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1143. </Compile>
  1144. <Compile Include="EM_PlanApplicationTeachingSetting.cs">
  1145. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1146. </Compile>
  1147. <Compile Include="EM_PlanApplicationTeachingSetting_Mapping.cs">
  1148. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1149. </Compile>
  1150. <Compile Include="EM_PlanApplication_Mapping.cs">
  1151. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1152. </Compile>
  1153. <Compile Include="EM_SelectCourseOpenControlSetting.cs">
  1154. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1155. </Compile>
  1156. <Compile Include="EM_SelectCourseOpenControlSetting_Mapping.cs">
  1157. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1158. </Compile>
  1159. <Compile Include="EM_SelectCourseTypeSetting.cs">
  1160. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1161. </Compile>
  1162. <Compile Include="EM_SelectCourseTypeSetting_Mapping.cs">
  1163. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1164. </Compile>
  1165. <Compile Include="EM_SpecialtyCourse.cs">
  1166. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1167. </Compile>
  1168. <Compile Include="EM_SpecialtyCourseTeachingSetting.cs">
  1169. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1170. </Compile>
  1171. <Compile Include="EM_SpecialtyCourseTeachingSetting_Mapping.cs">
  1172. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1173. </Compile>
  1174. <Compile Include="EM_SpecialtyCourse_Mapping.cs">
  1175. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1176. </Compile>
  1177. <Compile Include="EM_SpecialtyPlan.cs">
  1178. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1179. </Compile>
  1180. <Compile Include="EM_SpecialtyPlanTeachingModeType.cs">
  1181. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1182. </Compile>
  1183. <Compile Include="EM_SpecialtyPlanTeachingModeType_Mapping.cs">
  1184. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1185. </Compile>
  1186. <Compile Include="EM_SpecialtyPlanTeachingPlace.cs">
  1187. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1188. </Compile>
  1189. <Compile Include="EM_SpecialtyPlanTeachingPlace_Mapping.cs">
  1190. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1191. </Compile>
  1192. <Compile Include="EM_SpecialtyPlanTeachingSetting.cs">
  1193. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1194. </Compile>
  1195. <Compile Include="EM_SpecialtyPlanTeachingSetting_Mapping.cs">
  1196. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1197. </Compile>
  1198. <Compile Include="EM_SpecialtyPlan_Mapping.cs">
  1199. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1200. </Compile>
  1201. <Compile Include="EM_StudentConduct.cs">
  1202. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1203. </Compile>
  1204. <Compile Include="EM_StudentConduct_Mapping.cs">
  1205. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1206. </Compile>
  1207. <Compile Include="EM_StudentEncourage.cs">
  1208. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1209. </Compile>
  1210. <Compile Include="EM_StudentEncourage_Mapping.cs">
  1211. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1212. </Compile>
  1213. <Compile Include="EM_StudentMinorRegist.cs">
  1214. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1215. </Compile>
  1216. <Compile Include="EM_StudentMinorRegist_Mapping.cs">
  1217. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1218. </Compile>
  1219. <Compile Include="EM_StudentPunish.cs">
  1220. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1221. </Compile>
  1222. <Compile Include="EM_StudentPunish_Mapping.cs">
  1223. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1224. </Compile>
  1225. <Compile Include="EM_StudentReport.cs">
  1226. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1227. </Compile>
  1228. <Compile Include="EM_StudentReport_Mapping.cs">
  1229. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1230. </Compile>
  1231. <Compile Include="EM_TeacherEvaluation.cs">
  1232. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1233. </Compile>
  1234. <Compile Include="EM_TeacherEvaluation_Mapping.cs">
  1235. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1236. </Compile>
  1237. <Compile Include="EM_TeachingModeType.cs">
  1238. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1239. </Compile>
  1240. <Compile Include="EM_TeachingModeType_Mapping.cs">
  1241. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1242. </Compile>
  1243. <Compile Include="EM_TeachingPlace.cs">
  1244. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1245. </Compile>
  1246. <Compile Include="EM_TeachingPlace_Mapping.cs">
  1247. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1248. </Compile>
  1249. <Compile Include="EM_Teachingtask.cs">
  1250. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1251. </Compile>
  1252. <Compile Include="EM_Teachingtask_Mapping.cs">
  1253. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1254. </Compile>
  1255. <Compile Include="ER_ClubCourse.cs">
  1256. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1257. </Compile>
  1258. <Compile Include="ER_ClubCourse_Mapping.cs">
  1259. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1260. </Compile>
  1261. <Compile Include="ER_CreditFormula.cs">
  1262. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1263. </Compile>
  1264. <Compile Include="ER_CreditFormula_Mapping.cs">
  1265. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1266. </Compile>
  1267. <Compile Include="ER_CustomScoreFormula.cs">
  1268. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1269. </Compile>
  1270. <Compile Include="ER_CustomScoreFormula_Mapping.cs">
  1271. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1272. </Compile>
  1273. <Compile Include="ER_DegreeApply.cs">
  1274. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1275. </Compile>
  1276. <Compile Include="ER_DegreeApply_Mapping.cs">
  1277. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1278. </Compile>
  1279. <Compile Include="ER_DegreeCondition.cs">
  1280. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1281. </Compile>
  1282. <Compile Include="ER_DegreeConditionPackage.cs">
  1283. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1284. </Compile>
  1285. <Compile Include="ER_DegreeConditionPackage_Mapping.cs">
  1286. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1287. </Compile>
  1288. <Compile Include="ER_DegreeCondition_Mapping.cs">
  1289. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1290. </Compile>
  1291. <Compile Include="ER_DegreeForeignLanguage.cs">
  1292. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1293. </Compile>
  1294. <Compile Include="ER_DegreeForeignLanguage_Mapping.cs">
  1295. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1296. </Compile>
  1297. <Compile Include="ER_DegreeOpenControl.cs">
  1298. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1299. </Compile>
  1300. <Compile Include="ER_DegreeOpenControl_Mapping.cs">
  1301. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1302. </Compile>
  1303. <Compile Include="ER_ExaminationExemption.cs">
  1304. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1305. </Compile>
  1306. <Compile Include="ER_ExaminationExemption_Mapping.cs">
  1307. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1308. </Compile>
  1309. <Compile Include="ER_ExaminationSuspension.cs">
  1310. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1311. </Compile>
  1312. <Compile Include="ER_ExaminationSuspension_Mapping.cs">
  1313. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1314. </Compile>
  1315. <Compile Include="ER_ExamsCategorySetting.cs">
  1316. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1317. </Compile>
  1318. <Compile Include="ER_ExamsCategorySetting_Mapping.cs">
  1319. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1320. </Compile>
  1321. <Compile Include="ER_ExamsStateSetting.cs">
  1322. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1323. </Compile>
  1324. <Compile Include="ER_ExamsStateSetting_Mapping.cs">
  1325. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1326. </Compile>
  1327. <Compile Include="ER_FinalExamination.cs">
  1328. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1329. </Compile>
  1330. <Compile Include="ER_FinalExaminationStudent.cs">
  1331. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1332. </Compile>
  1333. <Compile Include="ER_FinalExaminationStudent_Mapping.cs">
  1334. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1335. </Compile>
  1336. <Compile Include="ER_FinalExamination_Mapping.cs">
  1337. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1338. </Compile>
  1339. <Compile Include="ER_FinallyScore.cs">
  1340. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1341. </Compile>
  1342. <Compile Include="ER_FinallyScoreDetail.cs">
  1343. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1344. </Compile>
  1345. <Compile Include="ER_FinallyScoreDetail_Mapping.cs">
  1346. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1347. </Compile>
  1348. <Compile Include="ER_FinallyScore_Mapping.cs">
  1349. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1350. </Compile>
  1351. <Compile Include="ER_GradePointFormula.cs">
  1352. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1353. </Compile>
  1354. <Compile Include="ER_GradePointFormula_Mapping.cs">
  1355. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1356. </Compile>
  1357. <Compile Include="ER_GraduateCardApply.cs">
  1358. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1359. </Compile>
  1360. <Compile Include="ER_GraduateCardApplyAttachment.cs">
  1361. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1362. </Compile>
  1363. <Compile Include="ER_GraduateCardApplyAttachment_Mapping.cs">
  1364. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1365. </Compile>
  1366. <Compile Include="ER_GraduateCardApply_Mapping.cs">
  1367. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1368. </Compile>
  1369. <Compile Include="ER_GraduateDesignCoursematerial.cs">
  1370. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1371. </Compile>
  1372. <Compile Include="ER_GraduateDesignCoursematerial_Mapping.cs">
  1373. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1374. </Compile>
  1375. <Compile Include="ER_GraduateSchoolyear.cs">
  1376. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1377. </Compile>
  1378. <Compile Include="ER_GraduateSchoolyear_Mapping.cs">
  1379. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1380. </Compile>
  1381. <Compile Include="ER_GraduationApply.cs">
  1382. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1383. </Compile>
  1384. <Compile Include="ER_GraduationApply_Mapping.cs">
  1385. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1386. </Compile>
  1387. <Compile Include="ER_GraduationCondition.cs">
  1388. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1389. </Compile>
  1390. <Compile Include="ER_GraduationConditionPackage.cs">
  1391. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1392. </Compile>
  1393. <Compile Include="ER_GraduationConditionPackage_Mapping.cs">
  1394. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1395. </Compile>
  1396. <Compile Include="ER_GraduationCondition_Mapping.cs">
  1397. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1398. </Compile>
  1399. <Compile Include="ER_GraduationCourse.cs">
  1400. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1401. </Compile>
  1402. <Compile Include="ER_GraduationCourseTypeRequirement.cs">
  1403. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1404. </Compile>
  1405. <Compile Include="ER_GraduationCourseTypeRequirement_Mapping.cs">
  1406. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1407. </Compile>
  1408. <Compile Include="ER_GraduationCourseTypeSetting.cs">
  1409. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1410. </Compile>
  1411. <Compile Include="ER_GraduationCourseTypeSetting_Mapping.cs">
  1412. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1413. </Compile>
  1414. <Compile Include="ER_GraduationCourse_Mapping.cs">
  1415. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1416. </Compile>
  1417. <Compile Include="ER_GraduationRequirement.cs">
  1418. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1419. </Compile>
  1420. <Compile Include="ER_GraduationRequirement_Mapping.cs">
  1421. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1422. </Compile>
  1423. <Compile Include="ER_GraduationStandard.cs">
  1424. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1425. </Compile>
  1426. <Compile Include="ER_GraduationStandard_Mapping.cs">
  1427. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1428. </Compile>
  1429. <Compile Include="ER_ImportScore.cs">
  1430. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1431. </Compile>
  1432. <Compile Include="ER_ImportScore_Mapping.cs">
  1433. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1434. </Compile>
  1435. <Compile Include="ER_LevelScore.cs">
  1436. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1437. </Compile>
  1438. <Compile Include="ER_LevelScore_Mapping.cs">
  1439. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1440. </Compile>
  1441. <Compile Include="ER_LevelSetting.cs">
  1442. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1443. </Compile>
  1444. <Compile Include="ER_LevelSetting_Mapping.cs">
  1445. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1446. </Compile>
  1447. <Compile Include="ER_MinorCondition.cs">
  1448. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1449. </Compile>
  1450. <Compile Include="ER_MinorCondition_Mapping.cs">
  1451. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1452. </Compile>
  1453. <Compile Include="ER_MinorControl.cs">
  1454. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1455. </Compile>
  1456. <Compile Include="ER_MinorControl_Mapping.cs">
  1457. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1458. </Compile>
  1459. <Compile Include="ER_MinorGraduationApply.cs">
  1460. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1461. </Compile>
  1462. <Compile Include="ER_MinorGraduationApply_Mapping.cs">
  1463. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1464. </Compile>
  1465. <Compile Include="ER_MinorGraduationCondition.cs">
  1466. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1467. </Compile>
  1468. <Compile Include="ER_MinorGraduationConditionPackage.cs">
  1469. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1470. </Compile>
  1471. <Compile Include="ER_MinorGraduationConditionPackage_Mapping.cs">
  1472. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1473. </Compile>
  1474. <Compile Include="ER_MinorGraduationCondition_Mapping.cs">
  1475. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1476. </Compile>
  1477. <Compile Include="ER_MinorGraduationStandard.cs">
  1478. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1479. </Compile>
  1480. <Compile Include="ER_MinorGraduationStandard_Mapping.cs">
  1481. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1482. </Compile>
  1483. <Compile Include="ER_Misconduct.cs">
  1484. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1485. </Compile>
  1486. <Compile Include="ER_Misconduct_Mapping.cs">
  1487. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1488. </Compile>
  1489. <Compile Include="ER_ResultTypeDetail.cs">
  1490. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1491. </Compile>
  1492. <Compile Include="ER_ResultTypeDetail_Mapping.cs">
  1493. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1494. </Compile>
  1495. <Compile Include="ER_RetakeCondition.cs">
  1496. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1497. </Compile>
  1498. <Compile Include="ER_RetakeConditionParameter.cs">
  1499. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1500. </Compile>
  1501. <Compile Include="ER_RetakeConditionParameter_Mapping.cs">
  1502. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1503. </Compile>
  1504. <Compile Include="ER_RetakeCondition_Mapping.cs">
  1505. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1506. </Compile>
  1507. <Compile Include="ER_RetakeExamsCatagory.cs">
  1508. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1509. </Compile>
  1510. <Compile Include="ER_RetakeExamsCatagory_Mapping.cs">
  1511. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1512. </Compile>
  1513. <Compile Include="ER_RetakeOpenControl.cs">
  1514. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1515. </Compile>
  1516. <Compile Include="ER_RetakeOpenControl_Mapping.cs">
  1517. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1518. </Compile>
  1519. <Compile Include="ER_RetakePlan.cs">
  1520. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1521. </Compile>
  1522. <Compile Include="ER_RetakePlanSetting.cs">
  1523. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1524. </Compile>
  1525. <Compile Include="ER_RetakePlanSettingScheduling.cs">
  1526. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1527. </Compile>
  1528. <Compile Include="ER_RetakePlanSettingScheduling_Mapping.cs">
  1529. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1530. </Compile>
  1531. <Compile Include="ER_RetakePlanSetting_Mapping.cs">
  1532. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1533. </Compile>
  1534. <Compile Include="ER_RetakePlanStudent.cs">
  1535. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1536. </Compile>
  1537. <Compile Include="ER_RetakePlanStudent_Mapping.cs">
  1538. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1539. </Compile>
  1540. <Compile Include="ER_RetakePlanTeacher.cs">
  1541. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1542. </Compile>
  1543. <Compile Include="ER_RetakePlanTeacher_Mapping.cs">
  1544. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1545. </Compile>
  1546. <Compile Include="ER_RetakePlanTeachingModeType.cs">
  1547. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1548. </Compile>
  1549. <Compile Include="ER_RetakePlanTeachingModeType_Mapping.cs">
  1550. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1551. </Compile>
  1552. <Compile Include="ER_RetakePlanTeachingPlace.cs">
  1553. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1554. </Compile>
  1555. <Compile Include="ER_RetakePlanTeachingPlace_Mapping.cs">
  1556. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1557. </Compile>
  1558. <Compile Include="ER_RetakePlanTeachingSetting.cs">
  1559. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1560. </Compile>
  1561. <Compile Include="ER_RetakePlanTeachingSetting_Mapping.cs">
  1562. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1563. </Compile>
  1564. <Compile Include="ER_RetakePlan_Mapping.cs">
  1565. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1566. </Compile>
  1567. <Compile Include="ER_Score.cs">
  1568. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1569. </Compile>
  1570. <Compile Include="ER_ScoreConvertByApply.cs">
  1571. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1572. </Compile>
  1573. <Compile Include="ER_ScoreConvertByApplyAttachment.cs">
  1574. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1575. </Compile>
  1576. <Compile Include="ER_ScoreConvertByApplyAttachment_Mapping.cs">
  1577. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1578. </Compile>
  1579. <Compile Include="ER_ScoreConvertByApply_Mapping.cs">
  1580. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1581. </Compile>
  1582. <Compile Include="ER_ScoreConvertByLevelScore.cs">
  1583. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1584. </Compile>
  1585. <Compile Include="ER_ScoreConvertByLevelScore_Mapping.cs">
  1586. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1587. </Compile>
  1588. <Compile Include="ER_ScoreConvertByReplace.cs">
  1589. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1590. </Compile>
  1591. <Compile Include="ER_ScoreConvertByReplace_Mapping.cs">
  1592. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1593. </Compile>
  1594. <Compile Include="ER_ScoreConvertedSubmitedScore.cs">
  1595. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1596. </Compile>
  1597. <Compile Include="ER_ScoreConvertedSubmitedScoreDetail.cs">
  1598. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1599. </Compile>
  1600. <Compile Include="ER_ScoreConvertedSubmitedScoreDetail_Mapping.cs">
  1601. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1602. </Compile>
  1603. <Compile Include="ER_ScoreConvertedSubmitedScore_Mapping.cs">
  1604. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1605. </Compile>
  1606. <Compile Include="ER_ScoreDetail.cs">
  1607. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1608. </Compile>
  1609. <Compile Include="ER_ScoreDetail_Mapping.cs">
  1610. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1611. </Compile>
  1612. <Compile Include="ER_ScoreFormula.cs">
  1613. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1614. </Compile>
  1615. <Compile Include="ER_ScoreFormulaDetail.cs">
  1616. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1617. </Compile>
  1618. <Compile Include="ER_ScoreFormulaDetail_Mapping.cs">
  1619. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1620. </Compile>
  1621. <Compile Include="ER_ScoreFormula_Mapping.cs">
  1622. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1623. </Compile>
  1624. <Compile Include="ER_ScoreParameterCollegeSetting.cs">
  1625. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1626. </Compile>
  1627. <Compile Include="ER_ScoreParameterCollegeSettingDetail.cs">
  1628. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1629. </Compile>
  1630. <Compile Include="ER_ScoreParameterCollegeSettingDetail_Mapping.cs">
  1631. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1632. </Compile>
  1633. <Compile Include="ER_ScoreParameterCollegeSetting_Mapping.cs">
  1634. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1635. </Compile>
  1636. <Compile Include="ER_ScoreParameterSetting.cs">
  1637. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1638. </Compile>
  1639. <Compile Include="ER_ScoreParameterSetting_Mapping.cs">
  1640. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1641. </Compile>
  1642. <Compile Include="ER_Score_Mapping.cs">
  1643. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1644. </Compile>
  1645. <Compile Include="ER_SubmitedScore.cs">
  1646. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1647. </Compile>
  1648. <Compile Include="ER_SubmitedScoreDetail.cs">
  1649. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1650. </Compile>
  1651. <Compile Include="ER_SubmitedScoreDetail_Mapping.cs">
  1652. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1653. </Compile>
  1654. <Compile Include="ER_SubmitedScore_Mapping.cs">
  1655. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1656. </Compile>
  1657. <Compile Include="ES_AdultEducationSchedule.cs">
  1658. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1659. </Compile>
  1660. <Compile Include="ES_AdultEducationScheduleTeacher.cs">
  1661. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1662. </Compile>
  1663. <Compile Include="ES_AdultEducationScheduleTeacher_Mapping.cs">
  1664. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1665. </Compile>
  1666. <Compile Include="ES_AdultEducationSchedule_Mapping.cs">
  1667. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1668. </Compile>
  1669. <Compile Include="ES_ClassmajorScheduleSetting.cs">
  1670. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1671. </Compile>
  1672. <Compile Include="ES_ClassmajorScheduleSetting_Mapping.cs">
  1673. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1674. </Compile>
  1675. <Compile Include="ES_ClassroomExcessiveUse.cs">
  1676. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1677. </Compile>
  1678. <Compile Include="ES_ClassroomExcessiveUseScheduling.cs">
  1679. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1680. </Compile>
  1681. <Compile Include="ES_ClassroomExcessiveUseSchedulingWeekNum.cs">
  1682. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1683. </Compile>
  1684. <Compile Include="ES_ClassroomExcessiveUseSchedulingWeekNum_Mapping.cs">
  1685. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1686. </Compile>
  1687. <Compile Include="ES_ClassroomExcessiveUseScheduling_Mapping.cs">
  1688. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1689. </Compile>
  1690. <Compile Include="ES_ClassroomExcessiveUse_Mapping.cs">
  1691. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1692. </Compile>
  1693. <Compile Include="ES_ClassroomReserve.cs">
  1694. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1695. </Compile>
  1696. <Compile Include="ES_ClassroomReserve_Mapping.cs">
  1697. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1698. </Compile>
  1699. <Compile Include="ES_ClassroomScheduleSetting.cs">
  1700. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1701. </Compile>
  1702. <Compile Include="ES_ClassroomScheduleSetting_Mapping.cs">
  1703. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1704. </Compile>
  1705. <Compile Include="ES_CollegeClassroom.cs">
  1706. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1707. </Compile>
  1708. <Compile Include="ES_CollegeClassroom_Mapping.cs">
  1709. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1710. </Compile>
  1711. <Compile Include="ES_CollegePriority.cs">
  1712. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1713. </Compile>
  1714. <Compile Include="ES_CollegePriority_Mapping.cs">
  1715. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1716. </Compile>
  1717. <Compile Include="ES_CollegeScheduleStatus.cs">
  1718. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1719. </Compile>
  1720. <Compile Include="ES_CollegeScheduleStatus_Mapping.cs">
  1721. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1722. </Compile>
  1723. <Compile Include="ES_CourseScheduleSetting.cs">
  1724. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1725. </Compile>
  1726. <Compile Include="ES_CourseScheduleSetting_Mapping.cs">
  1727. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1728. </Compile>
  1729. <Compile Include="ES_CourseTypePriority.cs">
  1730. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1731. </Compile>
  1732. <Compile Include="ES_CourseTypePriority_Mapping.cs">
  1733. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1734. </Compile>
  1735. <Compile Include="ES_EducationScheduling.cs">
  1736. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1737. </Compile>
  1738. <Compile Include="ES_EducationSchedulingAdjustment.cs">
  1739. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1740. </Compile>
  1741. <Compile Include="ES_EducationSchedulingAdjustmentTeacher.cs">
  1742. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1743. </Compile>
  1744. <Compile Include="ES_EducationSchedulingAdjustmentTeacher_Mapping.cs">
  1745. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1746. </Compile>
  1747. <Compile Include="ES_EducationSchedulingAdjustmentToTeacher.cs">
  1748. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1749. </Compile>
  1750. <Compile Include="ES_EducationSchedulingAdjustmentToTeacher_Mapping.cs">
  1751. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1752. </Compile>
  1753. <Compile Include="ES_EducationSchedulingAdjustment_Mapping.cs">
  1754. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1755. </Compile>
  1756. <Compile Include="ES_EducationSchedulingStop.cs">
  1757. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1758. </Compile>
  1759. <Compile Include="ES_EducationSchedulingStopTeacher.cs">
  1760. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1761. </Compile>
  1762. <Compile Include="ES_EducationSchedulingStopTeacher_Mapping.cs">
  1763. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1764. </Compile>
  1765. <Compile Include="ES_EducationSchedulingStop_Mapping.cs">
  1766. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1767. </Compile>
  1768. <Compile Include="ES_EducationSchedulingTeacher.cs">
  1769. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1770. </Compile>
  1771. <Compile Include="ES_EducationSchedulingTeacher_Mapping.cs">
  1772. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1773. </Compile>
  1774. <Compile Include="ES_EducationSchedulingWeekNum.cs">
  1775. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1776. </Compile>
  1777. <Compile Include="ES_EducationSchedulingWeekNum_Mapping.cs">
  1778. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1779. </Compile>
  1780. <Compile Include="ES_EducationScheduling_Mapping.cs">
  1781. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1782. </Compile>
  1783. <Compile Include="ES_TeacherScheduleSetting.cs">
  1784. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1785. </Compile>
  1786. <Compile Include="ES_TeacherScheduleSetting_Mapping.cs">
  1787. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1788. </Compile>
  1789. <Compile Include="ET_InventoryCollect.cs">
  1790. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1791. </Compile>
  1792. <Compile Include="ET_InventoryCollect_Mapping.cs">
  1793. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1794. </Compile>
  1795. <Compile Include="ET_StockIn.cs">
  1796. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1797. </Compile>
  1798. <Compile Include="ET_StockInDetail.cs">
  1799. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1800. </Compile>
  1801. <Compile Include="ET_StockInDetail_Mapping.cs">
  1802. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1803. </Compile>
  1804. <Compile Include="ET_StockIn_Mapping.cs">
  1805. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1806. </Compile>
  1807. <Compile Include="ET_StockOut.cs">
  1808. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1809. </Compile>
  1810. <Compile Include="ET_StockOutDetail.cs">
  1811. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1812. </Compile>
  1813. <Compile Include="ET_StockOutDetail_Mapping.cs">
  1814. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1815. </Compile>
  1816. <Compile Include="ET_StockOut_Mapping.cs">
  1817. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1818. </Compile>
  1819. <Compile Include="ET_StudentDistribute.cs">
  1820. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1821. </Compile>
  1822. <Compile Include="ET_StudentDistribute_Mapping.cs">
  1823. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1824. </Compile>
  1825. <Compile Include="ET_StudentsOrder.cs">
  1826. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1827. </Compile>
  1828. <Compile Include="ET_StudentsOrder_Mapping.cs">
  1829. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1830. </Compile>
  1831. <Compile Include="ET_SupplierDiscountSet.cs">
  1832. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1833. </Compile>
  1834. <Compile Include="ET_SupplierDiscountSet_Mapping.cs">
  1835. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1836. </Compile>
  1837. <Compile Include="ET_TeachersConfirmOrder.cs">
  1838. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1839. </Compile>
  1840. <Compile Include="ET_TeachersConfirmOrder_Mapping.cs">
  1841. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1842. </Compile>
  1843. <Compile Include="ET_TeachersOrder.cs">
  1844. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1845. </Compile>
  1846. <Compile Include="ET_TeachersOrder_Mapping.cs">
  1847. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1848. </Compile>
  1849. <Compile Include="ET_TeachersPreOrder.cs">
  1850. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1851. </Compile>
  1852. <Compile Include="ET_TeachersPreOrder_Mapping.cs">
  1853. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1854. </Compile>
  1855. <Compile Include="ET_TeachingMateriaInventory.cs">
  1856. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1857. </Compile>
  1858. <Compile Include="ET_TeachingMateriaInventory_Mapping.cs">
  1859. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1860. </Compile>
  1861. <Compile Include="EX_ExaminationModeSetting.cs">
  1862. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1863. </Compile>
  1864. <Compile Include="EX_ExaminationModeSetting_Mapping.cs">
  1865. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1866. </Compile>
  1867. <Compile Include="EX_ExaminationOpenControl.cs">
  1868. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1869. </Compile>
  1870. <Compile Include="EX_ExaminationOpenControl_Mapping.cs">
  1871. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1872. </Compile>
  1873. <Compile Include="EX_ExaminationPlan.cs">
  1874. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1875. </Compile>
  1876. <Compile Include="EX_ExaminationPlan_Mapping.cs">
  1877. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1878. </Compile>
  1879. <Compile Include="EX_ExaminationRegistration.cs">
  1880. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1881. </Compile>
  1882. <Compile Include="EX_ExaminationRegistration_Mapping.cs">
  1883. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1884. </Compile>
  1885. <Compile Include="EX_ExaminationRoomLayout.cs">
  1886. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1887. </Compile>
  1888. <Compile Include="EX_ExaminationRoomLayout_Mapping.cs">
  1889. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1890. </Compile>
  1891. <Compile Include="EX_ExaminationRoomSetting.cs">
  1892. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1893. </Compile>
  1894. <Compile Include="EX_ExaminationRoomSetting_Mapping.cs">
  1895. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1896. </Compile>
  1897. <Compile Include="EX_ExaminationRoomStudent.cs">
  1898. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1899. </Compile>
  1900. <Compile Include="EX_ExaminationRoomStudent_Mapping.cs">
  1901. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1902. </Compile>
  1903. <Compile Include="EX_ExaminationSubject.cs">
  1904. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1905. </Compile>
  1906. <Compile Include="EX_ExaminationSubjectCollegeControl.cs">
  1907. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1908. </Compile>
  1909. <Compile Include="EX_ExaminationSubjectCollegeControl_Mapping.cs">
  1910. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1911. </Compile>
  1912. <Compile Include="EX_ExaminationSubjectCountLimit.cs">
  1913. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1914. </Compile>
  1915. <Compile Include="EX_ExaminationSubjectCountLimit_Mapping.cs">
  1916. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1917. </Compile>
  1918. <Compile Include="EX_ExaminationSubject_Mapping.cs">
  1919. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1920. </Compile>
  1921. <Compile Include="EX_ExaminationTeacher.cs">
  1922. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1923. </Compile>
  1924. <Compile Include="EX_ExaminationTeacher_Mapping.cs">
  1925. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1926. </Compile>
  1927. <Compile Include="EX_ExaminationType.cs">
  1928. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1929. </Compile>
  1930. <Compile Include="EX_ExaminationType_Mapping.cs">
  1931. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1932. </Compile>
  1933. <Compile Include="EX_TimeSegment.cs">
  1934. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1935. </Compile>
  1936. <Compile Include="EX_TimeSegment_Mapping.cs">
  1937. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1938. </Compile>
  1939. <Compile Include="HB_BachelorSpecialtyStudentCount.cs">
  1940. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1941. </Compile>
  1942. <Compile Include="HB_BachelorSpecialtyStudentCountDetail.cs">
  1943. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1944. </Compile>
  1945. <Compile Include="HB_BachelorSpecialtyStudentCountDetail_Mapping.cs">
  1946. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1947. </Compile>
  1948. <Compile Include="HB_BachelorSpecialtyStudentCount_Mapping.cs">
  1949. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1950. </Compile>
  1951. <Compile Include="HB_ExamineeTypeSetting.cs">
  1952. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1953. </Compile>
  1954. <Compile Include="HB_ExamineeTypeSetting_Mapping.cs">
  1955. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1956. </Compile>
  1957. <Compile Include="HB_FacultymajorStudentCount.cs">
  1958. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1959. </Compile>
  1960. <Compile Include="HB_FacultymajorStudentCount_Mapping.cs">
  1961. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1962. </Compile>
  1963. <Compile Include="HB_FeaturesSetting.cs">
  1964. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1965. </Compile>
  1966. <Compile Include="HB_FeaturesSetting_Mapping.cs">
  1967. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1968. </Compile>
  1969. <Compile Include="HB_InschoolAgeStatus.cs">
  1970. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1971. </Compile>
  1972. <Compile Include="HB_InschoolAgeStatus_Mapping.cs">
  1973. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1974. </Compile>
  1975. <Compile Include="HB_InschoolOtherStatus.cs">
  1976. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1977. </Compile>
  1978. <Compile Include="HB_InschoolOtherStatus_Mapping.cs">
  1979. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1980. </Compile>
  1981. <Compile Include="HB_JuniorSpecialtyStudentCount.cs">
  1982. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1983. </Compile>
  1984. <Compile Include="HB_JuniorSpecialtyStudentCountDetail.cs">
  1985. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1986. </Compile>
  1987. <Compile Include="HB_JuniorSpecialtyStudentCountDetail_Mapping.cs">
  1988. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1989. </Compile>
  1990. <Compile Include="HB_JuniorSpecialtyStudentCount_Mapping.cs">
  1991. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1992. </Compile>
  1993. <Compile Include="HB_RecruitStatus.cs">
  1994. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  1995. </Compile>
  1996. <Compile Include="HB_RecruitStatus_Mapping.cs">
  1997. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  1998. </Compile>
  1999. <Compile Include="HB_RecruitTerritorialReport.cs">
  2000. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2001. </Compile>
  2002. <Compile Include="HB_RecruitTerritorialReport_Mapping.cs">
  2003. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2004. </Compile>
  2005. <Compile Include="HB_StudentChange.cs">
  2006. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2007. </Compile>
  2008. <Compile Include="HB_StudentChangeDetail.cs">
  2009. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2010. </Compile>
  2011. <Compile Include="HB_StudentChangeDetail_Mapping.cs">
  2012. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2013. </Compile>
  2014. <Compile Include="HB_StudentChangeReasonType.cs">
  2015. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2016. </Compile>
  2017. <Compile Include="HB_StudentChangeReasonTypeDetail.cs">
  2018. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2019. </Compile>
  2020. <Compile Include="HB_StudentChangeReasonTypeDetail_Mapping.cs">
  2021. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2022. </Compile>
  2023. <Compile Include="HB_StudentChangeReasonType_Mapping.cs">
  2024. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2025. </Compile>
  2026. <Compile Include="HB_StudentChange_Mapping.cs">
  2027. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2028. </Compile>
  2029. <Compile Include="HB_StudentQuitReason.cs">
  2030. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2031. </Compile>
  2032. <Compile Include="HB_StudentQuitReason_Mapping.cs">
  2033. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2034. </Compile>
  2035. <Compile Include="Properties\AssemblyInfo.cs" />
  2036. <Compile Include="SUP_DocumentAttachment.cs">
  2037. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2038. </Compile>
  2039. <Compile Include="SUP_DocumentAttachment_Mapping.cs">
  2040. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2041. </Compile>
  2042. <Compile Include="SUP_LessonRecord.cs">
  2043. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2044. </Compile>
  2045. <Compile Include="SUP_LessonRecordAttachment.cs">
  2046. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2047. </Compile>
  2048. <Compile Include="SUP_LessonRecordAttachment_Mapping.cs">
  2049. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2050. </Compile>
  2051. <Compile Include="SUP_LessonRecord_Mapping.cs">
  2052. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2053. </Compile>
  2054. <Compile Include="SUP_ProjectRecord.cs">
  2055. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2056. </Compile>
  2057. <Compile Include="SUP_ProjectRecordAttachment.cs">
  2058. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2059. </Compile>
  2060. <Compile Include="SUP_ProjectRecordAttachment_Mapping.cs">
  2061. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2062. </Compile>
  2063. <Compile Include="SUP_ProjectRecord_Mapping.cs">
  2064. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2065. </Compile>
  2066. <Compile Include="SUP_SupDocument.cs">
  2067. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2068. </Compile>
  2069. <Compile Include="SUP_SupDocument_Mapping.cs">
  2070. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2071. </Compile>
  2072. <Compile Include="SUP_SupervisionCollege.cs">
  2073. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2074. </Compile>
  2075. <Compile Include="SUP_SupervisionCollege_Mapping.cs">
  2076. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2077. </Compile>
  2078. <Compile Include="SUP_SupervisionUser.cs">
  2079. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2080. </Compile>
  2081. <Compile Include="SUP_SupervisionUser_Mapping.cs">
  2082. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2083. </Compile>
  2084. <Compile Include="Sys_Announcement.cs">
  2085. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2086. </Compile>
  2087. <Compile Include="Sys_AnnouncementType.cs">
  2088. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2089. </Compile>
  2090. <Compile Include="Sys_AnnouncementType_Mapping.cs">
  2091. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2092. </Compile>
  2093. <Compile Include="Sys_Announcement_Mapping.cs">
  2094. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2095. </Compile>
  2096. <Compile Include="Sys_BatchModify.cs">
  2097. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2098. </Compile>
  2099. <Compile Include="Sys_BatchModifyEvents.cs">
  2100. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2101. </Compile>
  2102. <Compile Include="Sys_BatchModifyEvents_Mapping.cs">
  2103. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2104. </Compile>
  2105. <Compile Include="Sys_BatchModifyExpand.cs">
  2106. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2107. </Compile>
  2108. <Compile Include="Sys_BatchModifyExpand_Mapping.cs">
  2109. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2110. </Compile>
  2111. <Compile Include="Sys_BatchModify_Mapping.cs">
  2112. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2113. </Compile>
  2114. <Compile Include="Sys_ConfiguretermsExpand.cs">
  2115. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2116. </Compile>
  2117. <Compile Include="Sys_ConfiguretermsExpand_Mapping.cs">
  2118. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2119. </Compile>
  2120. <Compile Include="Sys_ConfiguretermsInfo.cs">
  2121. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2122. </Compile>
  2123. <Compile Include="Sys_ConfiguretermsInfo_Mapping.cs">
  2124. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2125. </Compile>
  2126. <Compile Include="Sys_ContextMenu.cs">
  2127. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2128. </Compile>
  2129. <Compile Include="Sys_ContextMenu_Mapping.cs">
  2130. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2131. </Compile>
  2132. <Compile Include="Sys_ControlItem.cs">
  2133. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2134. </Compile>
  2135. <Compile Include="Sys_ControlItemDetail.cs">
  2136. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2137. </Compile>
  2138. <Compile Include="Sys_ControlItemDetail_Mapping.cs">
  2139. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2140. </Compile>
  2141. <Compile Include="Sys_ControlItem_Mapping.cs">
  2142. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2143. </Compile>
  2144. <Compile Include="Sys_Dictionary.cs">
  2145. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2146. </Compile>
  2147. <Compile Include="Sys_DictionaryItem.cs">
  2148. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2149. </Compile>
  2150. <Compile Include="Sys_DictionaryItem_Mapping.cs">
  2151. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2152. </Compile>
  2153. <Compile Include="Sys_Dictionary_Mapping.cs">
  2154. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2155. </Compile>
  2156. <Compile Include="Sys_FunctionCode.cs">
  2157. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2158. </Compile>
  2159. <Compile Include="Sys_FunctionCode_Mapping.cs">
  2160. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2161. </Compile>
  2162. <Compile Include="Sys_MailVerifyCode.cs">
  2163. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2164. </Compile>
  2165. <Compile Include="Sys_MailVerifyCode_Mapping.cs">
  2166. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2167. </Compile>
  2168. <Compile Include="Sys_Menu.cs">
  2169. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2170. </Compile>
  2171. <Compile Include="Sys_Menu_Mapping.cs">
  2172. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2173. </Compile>
  2174. <Compile Include="Sys_ProcessRelation.cs">
  2175. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2176. </Compile>
  2177. <Compile Include="Sys_ProcessRelation_Mapping.cs">
  2178. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2179. </Compile>
  2180. <Compile Include="Sys_Role.cs">
  2181. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2182. </Compile>
  2183. <Compile Include="Sys_RoleDataRange.cs">
  2184. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2185. </Compile>
  2186. <Compile Include="Sys_RoleDataRange_Mapping.cs">
  2187. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2188. </Compile>
  2189. <Compile Include="Sys_Role_Mapping.cs">
  2190. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2191. </Compile>
  2192. <Compile Include="Sys_ScheduleJob.cs">
  2193. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2194. </Compile>
  2195. <Compile Include="Sys_ScheduleJob_Mapping.cs">
  2196. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2197. </Compile>
  2198. <Compile Include="Sys_ScheduleLog.cs">
  2199. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2200. </Compile>
  2201. <Compile Include="Sys_ScheduleLog_Mapping.cs">
  2202. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2203. </Compile>
  2204. <Compile Include="Sys_Scheduling.cs">
  2205. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2206. </Compile>
  2207. <Compile Include="Sys_Scheduling_Mapping.cs">
  2208. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2209. </Compile>
  2210. <Compile Include="Sys_SerialNumber.cs">
  2211. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2212. </Compile>
  2213. <Compile Include="Sys_SerialNumber_Mapping.cs">
  2214. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2215. </Compile>
  2216. <Compile Include="Sys_User.cs">
  2217. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2218. </Compile>
  2219. <Compile Include="Sys_UserContrast.cs">
  2220. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2221. </Compile>
  2222. <Compile Include="Sys_UserContrast_Mapping.cs">
  2223. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2224. </Compile>
  2225. <Compile Include="Sys_UserSource.cs">
  2226. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2227. </Compile>
  2228. <Compile Include="Sys_UserSource_Mapping.cs">
  2229. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2230. </Compile>
  2231. <Compile Include="Sys_User_Mapping.cs">
  2232. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2233. </Compile>
  2234. <Compile Include="Sys_Workfloconfig.cs">
  2235. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2236. </Compile>
  2237. <Compile Include="Sys_Workfloconfig_Mapping.cs">
  2238. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2239. </Compile>
  2240. <Compile Include="TableKey.cs">
  2241. <AutoGen>True</AutoGen>
  2242. <DesignTime>True</DesignTime>
  2243. <DependentUpon>TableKey.tt</DependentUpon>
  2244. </Compile>
  2245. <Compile Include="Tem_PrintControl.cs">
  2246. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2247. </Compile>
  2248. <Compile Include="Tem_PrintControl_Mapping.cs">
  2249. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2250. </Compile>
  2251. <Compile Include="Tem_StudentPrintTimes.cs">
  2252. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2253. </Compile>
  2254. <Compile Include="Tem_StudentPrintTimes_Mapping.cs">
  2255. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2256. </Compile>
  2257. <Compile Include="TP_CourseTimeHours.cs">
  2258. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2259. </Compile>
  2260. <Compile Include="TP_CourseTimeHours_Mapping.cs">
  2261. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2262. </Compile>
  2263. <Compile Include="TP_LearningformRate.cs">
  2264. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2265. </Compile>
  2266. <Compile Include="TP_LearningformRate_Mapping.cs">
  2267. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2268. </Compile>
  2269. <Compile Include="TP_LevelStandard.cs">
  2270. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2271. </Compile>
  2272. <Compile Include="TP_LevelStandard_Mapping.cs">
  2273. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2274. </Compile>
  2275. <Compile Include="TP_PaymentFormula.cs">
  2276. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2277. </Compile>
  2278. <Compile Include="TP_PaymentFormula_Mapping.cs">
  2279. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2280. </Compile>
  2281. <Compile Include="TP_PaymentStandard.cs">
  2282. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2283. </Compile>
  2284. <Compile Include="TP_PaymentStandard_Mapping.cs">
  2285. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2286. </Compile>
  2287. <Compile Include="TP_PracticeRate.cs">
  2288. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2289. </Compile>
  2290. <Compile Include="TP_PracticeRate_Mapping.cs">
  2291. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2292. </Compile>
  2293. <Compile Include="TP_StaffStandard.cs">
  2294. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2295. </Compile>
  2296. <Compile Include="TP_StaffStandard_Mapping.cs">
  2297. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2298. </Compile>
  2299. <Compile Include="TP_StudentCountRate.cs">
  2300. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2301. </Compile>
  2302. <Compile Include="TP_StudentCountRate_Mapping.cs">
  2303. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2304. </Compile>
  2305. <Compile Include="TP_TeacherTypePaymentFormula.cs">
  2306. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2307. </Compile>
  2308. <Compile Include="TP_TeacherTypePaymentFormula_Mapping.cs">
  2309. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2310. </Compile>
  2311. <Compile Include="TP_WorktimeAddition.cs">
  2312. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2313. </Compile>
  2314. <Compile Include="TP_WorktimeAddition_Mapping.cs">
  2315. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2316. </Compile>
  2317. <Compile Include="TP_WorktimeAdjustment.cs">
  2318. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2319. </Compile>
  2320. <Compile Include="TP_WorktimeAdjustment_Mapping.cs">
  2321. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2322. </Compile>
  2323. <Compile Include="TP_WorktimeRate.cs">
  2324. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2325. </Compile>
  2326. <Compile Include="TP_WorktimeRate_Mapping.cs">
  2327. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2328. </Compile>
  2329. <Compile Include="VW_EvaluationEnter_TotalScore_StudentRank.cs">
  2330. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2331. </Compile>
  2332. <Compile Include="VW_EvaluationEnter_TotalScore_StudentRank_Mapping.cs">
  2333. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2334. </Compile>
  2335. <Compile Include="VW_EvaluationEnter_TotalScore_TeacherRank.cs">
  2336. <DependentUpon>EMIS.Entities.tt</DependentUpon>
  2337. </Compile>
  2338. <Compile Include="VW_EvaluationEnter_TotalScore_TeacherRank_Mapping.cs">
  2339. <DependentUpon>EMIS.Entitis.Mapping.tt</DependentUpon>
  2340. </Compile>
  2341. </ItemGroup>
  2342. <ItemGroup>
  2343. <None Include="App.config">
  2344. <SubType>Designer</SubType>
  2345. </None>
  2346. <None Include="EMISContext.edmx" />
  2347. <None Include="packages.config" />
  2348. </ItemGroup>
  2349. <ItemGroup>
  2350. <Content Include="EMIS.Entities.Context.tt">
  2351. <Generator>TextTemplatingFileGenerator</Generator>
  2352. <LastGenOutput>EMIS.Entities.Context.cs</LastGenOutput>
  2353. </Content>
  2354. <Content Include="EMIS.Entities.tt">
  2355. <Generator>TextTemplatingFileGenerator</Generator>
  2356. <LastGenOutput>EMIS.Entities.cs</LastGenOutput>
  2357. </Content>
  2358. <Content Include="EMIS.Entitis.Mapping.tt">
  2359. <Generator>TextTemplatingFileGenerator</Generator>
  2360. <LastGenOutput>EMIS.Entitis.Mapping.cs</LastGenOutput>
  2361. </Content>
  2362. <Content Include="TableKey.tt">
  2363. <Generator>TextTemplatingFileGenerator</Generator>
  2364. <LastGenOutput>TableKey.cs</LastGenOutput>
  2365. </Content>
  2366. <Content Include="空白的EMISContext.txt" />
  2367. </ItemGroup>
  2368. <ItemGroup>
  2369. <Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
  2370. </ItemGroup>
  2371. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  2372. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  2373. Other similar extension points exist, see Microsoft.Common.targets.
  2374. <Target Name="BeforeBuild">
  2375. </Target>
  2376. <Target Name="AfterBuild">
  2377. </Target>
  2378. -->
  2379. </Project>