API
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

DataContextModelSnapshot.cs 31KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008
  1. // <auto-generated />
  2. using System;
  3. using Microsoft.EntityFrameworkCore;
  4. using Microsoft.EntityFrameworkCore.Infrastructure;
  5. using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
  6. using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
  7. using UnivateProperties_API.Context;
  8. namespace UnivateProperties_API.Migrations
  9. {
  10. [DbContext(typeof(DataContext))]
  11. partial class DataContextModelSnapshot : ModelSnapshot
  12. {
  13. protected override void BuildModel(ModelBuilder modelBuilder)
  14. {
  15. #pragma warning disable 612, 618
  16. modelBuilder
  17. .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.SerialColumn)
  18. .HasAnnotation("ProductVersion", "2.2.4-servicing-10062")
  19. .HasAnnotation("Relational:MaxIdentifierLength", 63);
  20. modelBuilder.Entity("UnivateProperties_API.Model.Banks.Bank", b =>
  21. {
  22. b.Property<int>("Id")
  23. .ValueGeneratedOnAdd();
  24. b.Property<DateTime>("Created");
  25. b.Property<DateTime>("Modified");
  26. b.Property<string>("ModifiedBy");
  27. b.Property<string>("Name");
  28. b.Property<string>("UniversalBranchCode");
  29. b.HasKey("Id");
  30. b.ToTable("Banks");
  31. });
  32. modelBuilder.Entity("UnivateProperties_API.Model.Banks.BankAccount", b =>
  33. {
  34. b.Property<int>("Id")
  35. .ValueGeneratedOnAdd();
  36. b.Property<string>("AccountHolder");
  37. b.Property<string>("AccountNumber");
  38. b.Property<int>("BankId");
  39. b.Property<DateTime>("Created");
  40. b.Property<DateTime>("Modified");
  41. b.Property<string>("ModifiedBy");
  42. b.Property<int?>("OwnerId");
  43. b.HasKey("Id");
  44. b.HasIndex("BankId");
  45. b.HasIndex("OwnerId");
  46. b.ToTable("BankAccounts");
  47. });
  48. modelBuilder.Entity("UnivateProperties_API.Model.Communication.Email", b =>
  49. {
  50. b.Property<int>("Id")
  51. .ValueGeneratedOnAdd();
  52. b.Property<string>("BCC");
  53. b.Property<string>("Body");
  54. b.Property<string>("CC");
  55. b.Property<string>("Comment");
  56. b.Property<DateTime>("Created");
  57. b.Property<bool>("IsBodyHtml");
  58. b.Property<DateTime>("Modified");
  59. b.Property<string>("ModifiedBy");
  60. b.Property<int>("SenderId");
  61. b.Property<string>("Subject");
  62. b.Property<string>("To");
  63. b.Property<string>("ToDisplay");
  64. b.HasKey("Id");
  65. b.HasIndex("SenderId");
  66. b.ToTable("Emails");
  67. });
  68. modelBuilder.Entity("UnivateProperties_API.Model.Communication.SMTPAccount", b =>
  69. {
  70. b.Property<int>("Id")
  71. .ValueGeneratedOnAdd();
  72. b.Property<string>("Address");
  73. b.Property<DateTime>("Created");
  74. b.Property<string>("DisplayName");
  75. b.Property<DateTime>("Modified");
  76. b.Property<string>("ModifiedBy");
  77. b.Property<int>("SMTPHostId");
  78. b.HasKey("Id");
  79. b.HasIndex("SMTPHostId");
  80. b.ToTable("Accounts");
  81. });
  82. modelBuilder.Entity("UnivateProperties_API.Model.Communication.SMTPHost", b =>
  83. {
  84. b.Property<int>("Id")
  85. .ValueGeneratedOnAdd();
  86. b.Property<DateTime>("Created");
  87. b.Property<string>("Host");
  88. b.Property<DateTime>("Modified");
  89. b.Property<string>("ModifiedBy");
  90. b.Property<bool>("NeedsAuthorize");
  91. b.Property<string>("Password");
  92. b.Property<bool>("UseSSL");
  93. b.Property<string>("User");
  94. b.HasKey("Id");
  95. b.ToTable("Hosts");
  96. });
  97. modelBuilder.Entity("UnivateProperties_API.Model.Misc.Address", b =>
  98. {
  99. b.Property<int>("Id")
  100. .ValueGeneratedOnAdd();
  101. b.Property<string>("City");
  102. b.Property<DateTime>("Created");
  103. b.Property<DateTime>("Modified");
  104. b.Property<string>("ModifiedBy");
  105. b.Property<string>("PostalCode");
  106. b.Property<string>("Street");
  107. b.Property<string>("StreetNumber");
  108. b.Property<string>("Suburb");
  109. b.HasKey("Id");
  110. b.ToTable("Addresses");
  111. });
  112. modelBuilder.Entity("UnivateProperties_API.Model.ProcessFlow.BidItem", b =>
  113. {
  114. b.Property<int>("Id")
  115. .ValueGeneratedOnAdd();
  116. b.Property<double>("Amount");
  117. b.Property<int?>("BidMakerId");
  118. b.Property<string>("Comment");
  119. b.Property<DateTime>("Created");
  120. b.Property<string>("DeclinedReason");
  121. b.Property<DateTime>("Modified");
  122. b.Property<string>("ModifiedBy");
  123. b.Property<int?>("PropertyId");
  124. b.Property<int?>("StatusId");
  125. b.Property<int?>("TimeshareWeekId");
  126. b.HasKey("Id");
  127. b.HasIndex("BidMakerId");
  128. b.HasIndex("PropertyId");
  129. b.HasIndex("StatusId");
  130. b.HasIndex("TimeshareWeekId");
  131. b.ToTable("BidItems");
  132. });
  133. modelBuilder.Entity("UnivateProperties_API.Model.ProcessFlow.ProcessFlow", b =>
  134. {
  135. b.Property<int>("Id")
  136. .ValueGeneratedOnAdd();
  137. b.Property<DateTime>("Created");
  138. b.Property<DateTime>("Modified");
  139. b.Property<string>("ModifiedBy");
  140. b.Property<int?>("PropertyID");
  141. b.Property<int>("StatusID");
  142. b.Property<int?>("TimeshareID");
  143. b.HasKey("Id");
  144. b.HasIndex("PropertyID");
  145. b.HasIndex("StatusID");
  146. b.HasIndex("TimeshareID");
  147. b.ToTable("ProcessFlows");
  148. });
  149. modelBuilder.Entity("UnivateProperties_API.Model.Properties.Property", b =>
  150. {
  151. b.Property<int>("Id")
  152. .ValueGeneratedOnAdd();
  153. b.Property<string>("AddressLine1");
  154. b.Property<string>("AddressLine2");
  155. b.Property<string>("AddressLine3");
  156. b.Property<int?>("AgencyId");
  157. b.Property<int?>("AgentId");
  158. b.Property<int>("CityId");
  159. b.Property<DateTime>("Created");
  160. b.Property<string>("CreatedBy");
  161. b.Property<string>("Description");
  162. b.Property<bool>("IsSale");
  163. b.Property<DateTime>("Modified");
  164. b.Property<string>("ModifiedBy");
  165. b.Property<decimal>("OperationalCosts");
  166. b.Property<int?>("OwnerId");
  167. b.Property<decimal>("Price");
  168. b.Property<string>("PricePer");
  169. b.Property<string>("PropertyName");
  170. b.Property<int>("PropertyTypeId");
  171. b.Property<int>("ProvinceId");
  172. b.Property<bool>("Published");
  173. b.Property<string>("ShortDescription");
  174. b.Property<int?>("StatusId");
  175. b.Property<int>("SuburbId");
  176. b.Property<string>("Unit");
  177. b.HasKey("Id");
  178. b.HasIndex("AgencyId");
  179. b.HasIndex("AgentId");
  180. b.HasIndex("CityId");
  181. b.HasIndex("OwnerId");
  182. b.HasIndex("PropertyTypeId");
  183. b.HasIndex("ProvinceId");
  184. b.HasIndex("StatusId");
  185. b.HasIndex("SuburbId");
  186. b.ToTable("Properties");
  187. });
  188. modelBuilder.Entity("UnivateProperties_API.Model.Properties.PropertyImage", b =>
  189. {
  190. b.Property<int>("Id")
  191. .ValueGeneratedOnAdd();
  192. b.Property<DateTime>("Created");
  193. b.Property<string>("Image");
  194. b.Property<bool>("IsDefault");
  195. b.Property<DateTime>("Modified");
  196. b.Property<string>("ModifiedBy");
  197. b.Property<int>("PropertyId");
  198. b.HasKey("Id");
  199. b.HasIndex("PropertyId");
  200. b.ToTable("PropertyImages");
  201. });
  202. modelBuilder.Entity("UnivateProperties_API.Model.Properties.PropertyType", b =>
  203. {
  204. b.Property<int>("Id")
  205. .ValueGeneratedOnAdd();
  206. b.Property<DateTime>("Created");
  207. b.Property<string>("Description");
  208. b.Property<DateTime>("Modified");
  209. b.Property<string>("ModifiedBy");
  210. b.Property<int>("UsageType");
  211. b.HasKey("Id");
  212. b.ToTable("PropertyTypes");
  213. });
  214. modelBuilder.Entity("UnivateProperties_API.Model.Properties.PropertyUserField", b =>
  215. {
  216. b.Property<int>("Id")
  217. .ValueGeneratedOnAdd();
  218. b.Property<DateTime>("Created");
  219. b.Property<string>("Description");
  220. b.Property<DateTime>("Modified");
  221. b.Property<string>("ModifiedBy");
  222. b.Property<int>("PropertyId");
  223. b.Property<int>("UserDefinedFieldId");
  224. b.Property<string>("Value");
  225. b.HasKey("Id");
  226. b.HasIndex("PropertyId");
  227. b.HasIndex("UserDefinedFieldId");
  228. b.ToTable("PropertyUserFields");
  229. });
  230. modelBuilder.Entity("UnivateProperties_API.Model.Properties.UserDefinedField", b =>
  231. {
  232. b.Property<int>("Id")
  233. .ValueGeneratedOnAdd();
  234. b.Property<DateTime>("Created");
  235. b.Property<string>("FieldName");
  236. b.Property<string>("FieldType");
  237. b.Property<int>("GroupId");
  238. b.Property<DateTime>("Modified");
  239. b.Property<string>("ModifiedBy");
  240. b.Property<int>("Rank");
  241. b.HasKey("Id");
  242. b.HasIndex("GroupId");
  243. b.ToTable("UserDefinedFields");
  244. });
  245. modelBuilder.Entity("UnivateProperties_API.Model.Properties.UserDefinedGroup", b =>
  246. {
  247. b.Property<int>("Id")
  248. .ValueGeneratedOnAdd();
  249. b.Property<DateTime>("Created");
  250. b.Property<string>("Description");
  251. b.Property<DateTime>("Modified");
  252. b.Property<string>("ModifiedBy");
  253. b.Property<int>("Rank");
  254. b.Property<int>("UsageType");
  255. b.HasKey("Id");
  256. b.ToTable("UserDefinedGroups");
  257. });
  258. modelBuilder.Entity("UnivateProperties_API.Model.Region.City", b =>
  259. {
  260. b.Property<int>("Id")
  261. .ValueGeneratedOnAdd();
  262. b.Property<string>("Code");
  263. b.Property<DateTime>("Created");
  264. b.Property<string>("Description");
  265. b.Property<DateTime>("Modified");
  266. b.Property<string>("ModifiedBy");
  267. b.Property<int>("ProvinceId");
  268. b.HasKey("Id");
  269. b.HasIndex("ProvinceId");
  270. b.ToTable("Cities");
  271. });
  272. modelBuilder.Entity("UnivateProperties_API.Model.Region.Province", b =>
  273. {
  274. b.Property<int>("Id")
  275. .ValueGeneratedOnAdd();
  276. b.Property<string>("Code");
  277. b.Property<DateTime>("Created");
  278. b.Property<string>("Description");
  279. b.Property<DateTime>("Modified");
  280. b.Property<string>("ModifiedBy");
  281. b.HasKey("Id");
  282. b.ToTable("Provinces");
  283. });
  284. modelBuilder.Entity("UnivateProperties_API.Model.Region.Suburb", b =>
  285. {
  286. b.Property<int>("Id")
  287. .ValueGeneratedOnAdd();
  288. b.Property<int>("CityId");
  289. b.Property<DateTime>("Created");
  290. b.Property<string>("Description");
  291. b.Property<DateTime>("Modified");
  292. b.Property<string>("ModifiedBy");
  293. b.Property<string>("PostalCode");
  294. b.HasKey("Id");
  295. b.HasIndex("CityId");
  296. b.ToTable("Suburbs");
  297. });
  298. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.Season", b =>
  299. {
  300. b.Property<int>("Id")
  301. .ValueGeneratedOnAdd();
  302. b.Property<DateTime>("Created");
  303. b.Property<DateTime>("Modified");
  304. b.Property<string>("ModifiedBy");
  305. b.Property<string>("Name");
  306. b.HasKey("Id");
  307. b.ToTable("Seasons");
  308. });
  309. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.Status", b =>
  310. {
  311. b.Property<int>("Id")
  312. .ValueGeneratedOnAdd();
  313. b.Property<string>("Code");
  314. b.Property<DateTime>("Created");
  315. b.Property<string>("Description");
  316. b.Property<DateTime>("Modified");
  317. b.Property<string>("ModifiedBy");
  318. b.Property<int>("StatusType");
  319. b.HasKey("Id");
  320. b.ToTable("Status");
  321. });
  322. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.TimeshareWeek", b =>
  323. {
  324. b.Property<int>("Id")
  325. .ValueGeneratedOnAdd();
  326. b.Property<int?>("AgencyId");
  327. b.Property<bool>("AgentAsRep");
  328. b.Property<int?>("AgentId");
  329. b.Property<DateTime>("ArrivalDate");
  330. b.Property<string>("BankedWith");
  331. b.Property<int>("Bedrooms");
  332. b.Property<DateTime>("Created");
  333. b.Property<bool>("CurrentYearBanked");
  334. b.Property<DateTime>("DepartureDate");
  335. b.Property<bool>("LeviesPaidInFull");
  336. b.Property<double>("LevyAmount");
  337. b.Property<int>("MaxSleep");
  338. b.Property<DateTime>("Modified");
  339. b.Property<string>("ModifiedBy");
  340. b.Property<string>("Module");
  341. b.Property<DateTime>("OriginalPurchaseDate");
  342. b.Property<double>("OriginalPurchasePrice");
  343. b.Property<bool>("OtherResort");
  344. b.Property<int>("OwnerId");
  345. b.Property<bool>("ReferedByAgent");
  346. b.Property<int>("RegionId");
  347. b.Property<string>("ResortCode");
  348. b.Property<string>("ResortName");
  349. b.Property<string>("Season");
  350. b.Property<double>("SellPrice");
  351. b.Property<int>("StatusId");
  352. b.Property<string>("UnitNumber");
  353. b.Property<string>("WeekNumber");
  354. b.Property<bool>("WeekPlacedForRental");
  355. b.HasKey("Id");
  356. b.HasIndex("AgencyId");
  357. b.HasIndex("AgentId");
  358. b.HasIndex("OwnerId");
  359. b.HasIndex("RegionId");
  360. b.HasIndex("StatusId");
  361. b.ToTable("Weeks");
  362. });
  363. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.UnitConfiguration", b =>
  364. {
  365. b.Property<int>("Id")
  366. .ValueGeneratedOnAdd();
  367. b.Property<int>("Adults");
  368. b.Property<int>("Bedrooms");
  369. b.Property<int>("Children");
  370. b.Property<string>("Code");
  371. b.Property<DateTime>("Created");
  372. b.Property<DateTime>("Modified");
  373. b.Property<string>("ModifiedBy");
  374. b.HasKey("Id");
  375. b.HasIndex("Code")
  376. .IsUnique();
  377. b.ToTable("UnitConfigurations");
  378. });
  379. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.UnitConfigurationType", b =>
  380. {
  381. b.Property<int>("Id")
  382. .ValueGeneratedOnAdd();
  383. b.Property<DateTime>("Created");
  384. b.Property<string>("Description");
  385. b.Property<DateTime>("Modified");
  386. b.Property<string>("ModifiedBy");
  387. b.Property<int>("UnitConfigurationId");
  388. b.HasKey("Id");
  389. b.HasIndex("UnitConfigurationId");
  390. b.ToTable("UnitConfigurationTypes");
  391. });
  392. modelBuilder.Entity("UnivateProperties_API.Model.Users.Agency", b =>
  393. {
  394. b.Property<int>("Id")
  395. .ValueGeneratedOnAdd();
  396. b.Property<string>("AgencyName");
  397. b.Property<string>("CompanyRegNumber");
  398. b.Property<DateTime>("Created");
  399. b.Property<string>("EAABEFFCNumber");
  400. b.Property<DateTime>("Modified");
  401. b.Property<string>("ModifiedBy");
  402. b.HasKey("Id");
  403. b.ToTable("Agencies");
  404. });
  405. modelBuilder.Entity("UnivateProperties_API.Model.Users.Agent", b =>
  406. {
  407. b.Property<int>("Id")
  408. .ValueGeneratedOnAdd();
  409. b.Property<int?>("AgencyId");
  410. b.Property<string>("CellNumber");
  411. b.Property<DateTime>("Created");
  412. b.Property<string>("Email");
  413. b.Property<DateTime>("Modified");
  414. b.Property<string>("ModifiedBy");
  415. b.Property<string>("Name");
  416. b.Property<string>("Surname");
  417. b.Property<string>("Telephone");
  418. b.Property<int?>("UserId");
  419. b.HasKey("Id");
  420. b.HasIndex("AgencyId");
  421. b.HasIndex("UserId");
  422. b.ToTable("Agents");
  423. });
  424. modelBuilder.Entity("UnivateProperties_API.Model.Users.Individual", b =>
  425. {
  426. b.Property<int>("Id")
  427. .ValueGeneratedOnAdd();
  428. b.Property<int?>("AddressId");
  429. b.Property<string>("CellNumber");
  430. b.Property<string>("CompanyRegNumber");
  431. b.Property<DateTime>("Created");
  432. b.Property<string>("Email");
  433. b.Property<string>("IdNumber");
  434. b.Property<string>("IncomeTaxNumber");
  435. b.Property<string>("MaritalStatus");
  436. b.Property<DateTime>("Modified");
  437. b.Property<string>("ModifiedBy");
  438. b.Property<string>("Name");
  439. b.Property<string>("Surname");
  440. b.Property<string>("Telephone");
  441. b.Property<int?>("UserId");
  442. b.HasKey("Id");
  443. b.HasIndex("AddressId");
  444. b.HasIndex("UserId");
  445. b.ToTable("Individuals");
  446. });
  447. modelBuilder.Entity("UnivateProperties_API.Model.Users.User", b =>
  448. {
  449. b.Property<int>("Id")
  450. .ValueGeneratedOnAdd();
  451. b.Property<DateTime>("Created");
  452. b.Property<DateTime>("Modified");
  453. b.Property<string>("ModifiedBy");
  454. b.Property<byte[]>("PasswordHash");
  455. b.Property<byte[]>("PasswordSalt");
  456. b.Property<string>("Role");
  457. b.Property<string>("Token");
  458. b.Property<string>("Username");
  459. b.Property<bool>("Verified");
  460. b.HasKey("Id");
  461. b.ToTable("Users");
  462. });
  463. modelBuilder.Entity("UnivateProperties_API.Model.Banks.BankAccount", b =>
  464. {
  465. b.HasOne("UnivateProperties_API.Model.Banks.Bank", "Bank")
  466. .WithMany()
  467. .HasForeignKey("BankId")
  468. .OnDelete(DeleteBehavior.Cascade);
  469. b.HasOne("UnivateProperties_API.Model.Users.Individual", "Owner")
  470. .WithMany()
  471. .HasForeignKey("OwnerId");
  472. });
  473. modelBuilder.Entity("UnivateProperties_API.Model.Communication.Email", b =>
  474. {
  475. b.HasOne("UnivateProperties_API.Model.Communication.SMTPAccount", "Sender")
  476. .WithMany("Emails")
  477. .HasForeignKey("SenderId")
  478. .OnDelete(DeleteBehavior.Cascade);
  479. });
  480. modelBuilder.Entity("UnivateProperties_API.Model.Communication.SMTPAccount", b =>
  481. {
  482. b.HasOne("UnivateProperties_API.Model.Communication.SMTPHost", "SMTPHost")
  483. .WithMany("SMTPAccounts")
  484. .HasForeignKey("SMTPHostId")
  485. .OnDelete(DeleteBehavior.Cascade);
  486. });
  487. modelBuilder.Entity("UnivateProperties_API.Model.ProcessFlow.BidItem", b =>
  488. {
  489. b.HasOne("UnivateProperties_API.Model.Users.Individual", "BidMaker")
  490. .WithMany()
  491. .HasForeignKey("BidMakerId");
  492. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  493. .WithMany("BidItems")
  494. .HasForeignKey("PropertyId");
  495. b.HasOne("UnivateProperties_API.Model.Timeshare.Status", "Status")
  496. .WithMany()
  497. .HasForeignKey("StatusId");
  498. b.HasOne("UnivateProperties_API.Model.Timeshare.TimeshareWeek", "TimeshareWeek")
  499. .WithMany("BidItems")
  500. .HasForeignKey("TimeshareWeekId");
  501. });
  502. modelBuilder.Entity("UnivateProperties_API.Model.ProcessFlow.ProcessFlow", b =>
  503. {
  504. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  505. .WithMany("ProcessFlows")
  506. .HasForeignKey("PropertyID");
  507. b.HasOne("UnivateProperties_API.Model.Timeshare.Status", "Status")
  508. .WithMany()
  509. .HasForeignKey("StatusID")
  510. .OnDelete(DeleteBehavior.Cascade);
  511. b.HasOne("UnivateProperties_API.Model.Timeshare.TimeshareWeek", "Timeshare")
  512. .WithMany("ProcessFlows")
  513. .HasForeignKey("TimeshareID");
  514. });
  515. modelBuilder.Entity("UnivateProperties_API.Model.Properties.Property", b =>
  516. {
  517. b.HasOne("UnivateProperties_API.Model.Users.Agency", "Agency")
  518. .WithMany("Properties")
  519. .HasForeignKey("AgencyId");
  520. b.HasOne("UnivateProperties_API.Model.Users.Agent", "Agent")
  521. .WithMany("Properties")
  522. .HasForeignKey("AgentId");
  523. b.HasOne("UnivateProperties_API.Model.Region.City", "City")
  524. .WithMany()
  525. .HasForeignKey("CityId")
  526. .OnDelete(DeleteBehavior.Cascade);
  527. b.HasOne("UnivateProperties_API.Model.Users.Individual", "Owner")
  528. .WithMany("Properties")
  529. .HasForeignKey("OwnerId");
  530. b.HasOne("UnivateProperties_API.Model.Properties.PropertyType", "PropertyType")
  531. .WithMany()
  532. .HasForeignKey("PropertyTypeId")
  533. .OnDelete(DeleteBehavior.Cascade);
  534. b.HasOne("UnivateProperties_API.Model.Region.Province", "Province")
  535. .WithMany()
  536. .HasForeignKey("ProvinceId")
  537. .OnDelete(DeleteBehavior.Cascade);
  538. b.HasOne("UnivateProperties_API.Model.Timeshare.Status", "Status")
  539. .WithMany()
  540. .HasForeignKey("StatusId");
  541. b.HasOne("UnivateProperties_API.Model.Region.Suburb", "Suburb")
  542. .WithMany()
  543. .HasForeignKey("SuburbId")
  544. .OnDelete(DeleteBehavior.Cascade);
  545. });
  546. modelBuilder.Entity("UnivateProperties_API.Model.Properties.PropertyImage", b =>
  547. {
  548. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  549. .WithMany("PropertyImages")
  550. .HasForeignKey("PropertyId")
  551. .OnDelete(DeleteBehavior.Cascade);
  552. });
  553. modelBuilder.Entity("UnivateProperties_API.Model.Properties.PropertyUserField", b =>
  554. {
  555. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  556. .WithMany("PropertyUserFields")
  557. .HasForeignKey("PropertyId")
  558. .OnDelete(DeleteBehavior.Cascade);
  559. b.HasOne("UnivateProperties_API.Model.Properties.UserDefinedField", "UserDefinedField")
  560. .WithMany()
  561. .HasForeignKey("UserDefinedFieldId")
  562. .OnDelete(DeleteBehavior.Cascade);
  563. });
  564. modelBuilder.Entity("UnivateProperties_API.Model.Properties.UserDefinedField", b =>
  565. {
  566. b.HasOne("UnivateProperties_API.Model.Properties.UserDefinedGroup", "Group")
  567. .WithMany("Fields")
  568. .HasForeignKey("GroupId")
  569. .OnDelete(DeleteBehavior.Cascade);
  570. });
  571. modelBuilder.Entity("UnivateProperties_API.Model.Region.City", b =>
  572. {
  573. b.HasOne("UnivateProperties_API.Model.Region.Province", "Province")
  574. .WithMany()
  575. .HasForeignKey("ProvinceId")
  576. .OnDelete(DeleteBehavior.Cascade);
  577. });
  578. modelBuilder.Entity("UnivateProperties_API.Model.Region.Suburb", b =>
  579. {
  580. b.HasOne("UnivateProperties_API.Model.Region.City", "City")
  581. .WithMany()
  582. .HasForeignKey("CityId")
  583. .OnDelete(DeleteBehavior.Cascade);
  584. });
  585. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.TimeshareWeek", b =>
  586. {
  587. b.HasOne("UnivateProperties_API.Model.Users.Agency", "Agency")
  588. .WithMany()
  589. .HasForeignKey("AgencyId");
  590. b.HasOne("UnivateProperties_API.Model.Users.Agent", "Agent")
  591. .WithMany()
  592. .HasForeignKey("AgentId");
  593. b.HasOne("UnivateProperties_API.Model.Users.Individual", "Owner")
  594. .WithMany()
  595. .HasForeignKey("OwnerId")
  596. .OnDelete(DeleteBehavior.Cascade);
  597. b.HasOne("UnivateProperties_API.Model.Region.Province", "Region")
  598. .WithMany()
  599. .HasForeignKey("RegionId")
  600. .OnDelete(DeleteBehavior.Cascade);
  601. b.HasOne("UnivateProperties_API.Model.Timeshare.Status", "Status")
  602. .WithMany()
  603. .HasForeignKey("StatusId")
  604. .OnDelete(DeleteBehavior.Cascade);
  605. });
  606. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.UnitConfigurationType", b =>
  607. {
  608. b.HasOne("UnivateProperties_API.Model.Timeshare.UnitConfiguration", "UnitConfiguration")
  609. .WithMany("Types")
  610. .HasForeignKey("UnitConfigurationId")
  611. .OnDelete(DeleteBehavior.Cascade);
  612. });
  613. modelBuilder.Entity("UnivateProperties_API.Model.Users.Agent", b =>
  614. {
  615. b.HasOne("UnivateProperties_API.Model.Users.Agency", "Agency")
  616. .WithMany("Agents")
  617. .HasForeignKey("AgencyId");
  618. b.HasOne("UnivateProperties_API.Model.Users.User", "User")
  619. .WithMany()
  620. .HasForeignKey("UserId");
  621. });
  622. modelBuilder.Entity("UnivateProperties_API.Model.Users.Individual", b =>
  623. {
  624. b.HasOne("UnivateProperties_API.Model.Misc.Address", "Address")
  625. .WithMany()
  626. .HasForeignKey("AddressId");
  627. b.HasOne("UnivateProperties_API.Model.Users.User", "User")
  628. .WithMany()
  629. .HasForeignKey("UserId");
  630. });
  631. #pragma warning restore 612, 618
  632. }
  633. }
  634. }