API
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

DataContextModelSnapshot.cs 31KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006
  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.Bank.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.Bank.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>("WeekNumber");
  353. b.Property<bool>("WeekPlacedForRental");
  354. b.HasKey("Id");
  355. b.HasIndex("AgencyId");
  356. b.HasIndex("AgentId");
  357. b.HasIndex("OwnerId");
  358. b.HasIndex("RegionId");
  359. b.HasIndex("StatusId");
  360. b.ToTable("Weeks");
  361. });
  362. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.UnitConfiguration", b =>
  363. {
  364. b.Property<int>("Id")
  365. .ValueGeneratedOnAdd();
  366. b.Property<int>("Adults");
  367. b.Property<int>("Bedrooms");
  368. b.Property<int>("Children");
  369. b.Property<string>("Code");
  370. b.Property<DateTime>("Created");
  371. b.Property<DateTime>("Modified");
  372. b.Property<string>("ModifiedBy");
  373. b.HasKey("Id");
  374. b.HasIndex("Code")
  375. .IsUnique();
  376. b.ToTable("UnitConfigurations");
  377. });
  378. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.UnitConfigurationType", b =>
  379. {
  380. b.Property<int>("Id")
  381. .ValueGeneratedOnAdd();
  382. b.Property<DateTime>("Created");
  383. b.Property<string>("Description");
  384. b.Property<DateTime>("Modified");
  385. b.Property<string>("ModifiedBy");
  386. b.Property<int>("UnitConfigurationId");
  387. b.HasKey("Id");
  388. b.HasIndex("UnitConfigurationId");
  389. b.ToTable("UnitConfigurationTypes");
  390. });
  391. modelBuilder.Entity("UnivateProperties_API.Model.Users.Agency", b =>
  392. {
  393. b.Property<int>("Id")
  394. .ValueGeneratedOnAdd();
  395. b.Property<string>("AgencyName");
  396. b.Property<string>("CompanyRegNumber");
  397. b.Property<DateTime>("Created");
  398. b.Property<string>("EAABEFFCNumber");
  399. b.Property<DateTime>("Modified");
  400. b.Property<string>("ModifiedBy");
  401. b.HasKey("Id");
  402. b.ToTable("Agencies");
  403. });
  404. modelBuilder.Entity("UnivateProperties_API.Model.Users.Agent", b =>
  405. {
  406. b.Property<int>("Id")
  407. .ValueGeneratedOnAdd();
  408. b.Property<int?>("AgencyId");
  409. b.Property<string>("CellNumber");
  410. b.Property<DateTime>("Created");
  411. b.Property<string>("Email");
  412. b.Property<DateTime>("Modified");
  413. b.Property<string>("ModifiedBy");
  414. b.Property<string>("Name");
  415. b.Property<string>("Surname");
  416. b.Property<string>("Telephone");
  417. b.Property<int?>("UserId");
  418. b.HasKey("Id");
  419. b.HasIndex("AgencyId");
  420. b.HasIndex("UserId");
  421. b.ToTable("Agents");
  422. });
  423. modelBuilder.Entity("UnivateProperties_API.Model.Users.Individual", b =>
  424. {
  425. b.Property<int>("Id")
  426. .ValueGeneratedOnAdd();
  427. b.Property<int?>("AddressId");
  428. b.Property<string>("CellNumber");
  429. b.Property<string>("CompanyRegNumber");
  430. b.Property<DateTime>("Created");
  431. b.Property<string>("Email");
  432. b.Property<string>("IdNumber");
  433. b.Property<string>("IncomeTaxNumber");
  434. b.Property<string>("MaritalStatus");
  435. b.Property<DateTime>("Modified");
  436. b.Property<string>("ModifiedBy");
  437. b.Property<string>("Name");
  438. b.Property<string>("Surname");
  439. b.Property<string>("Telephone");
  440. b.Property<int?>("UserId");
  441. b.HasKey("Id");
  442. b.HasIndex("AddressId");
  443. b.HasIndex("UserId");
  444. b.ToTable("Individuals");
  445. });
  446. modelBuilder.Entity("UnivateProperties_API.Model.Users.User", b =>
  447. {
  448. b.Property<int>("Id")
  449. .ValueGeneratedOnAdd();
  450. b.Property<DateTime>("Created");
  451. b.Property<DateTime>("Modified");
  452. b.Property<string>("ModifiedBy");
  453. b.Property<byte[]>("PasswordHash");
  454. b.Property<byte[]>("PasswordSalt");
  455. b.Property<string>("Role");
  456. b.Property<string>("Token");
  457. b.Property<string>("Username");
  458. b.Property<bool>("Verified");
  459. b.HasKey("Id");
  460. b.ToTable("Users");
  461. });
  462. modelBuilder.Entity("UnivateProperties_API.Model.Bank.BankAccount", b =>
  463. {
  464. b.HasOne("UnivateProperties_API.Model.Bank.Bank", "Bank")
  465. .WithMany()
  466. .HasForeignKey("BankId")
  467. .OnDelete(DeleteBehavior.Cascade);
  468. b.HasOne("UnivateProperties_API.Model.Users.Individual", "Owner")
  469. .WithMany()
  470. .HasForeignKey("OwnerId");
  471. });
  472. modelBuilder.Entity("UnivateProperties_API.Model.Communication.Email", b =>
  473. {
  474. b.HasOne("UnivateProperties_API.Model.Communication.SMTPAccount", "Sender")
  475. .WithMany("Emails")
  476. .HasForeignKey("SenderId")
  477. .OnDelete(DeleteBehavior.Cascade);
  478. });
  479. modelBuilder.Entity("UnivateProperties_API.Model.Communication.SMTPAccount", b =>
  480. {
  481. b.HasOne("UnivateProperties_API.Model.Communication.SMTPHost", "SMTPHost")
  482. .WithMany("SMTPAccounts")
  483. .HasForeignKey("SMTPHostId")
  484. .OnDelete(DeleteBehavior.Cascade);
  485. });
  486. modelBuilder.Entity("UnivateProperties_API.Model.ProcessFlow.BidItem", b =>
  487. {
  488. b.HasOne("UnivateProperties_API.Model.Users.Individual", "BidMaker")
  489. .WithMany()
  490. .HasForeignKey("BidMakerId");
  491. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  492. .WithMany("BidItems")
  493. .HasForeignKey("PropertyId");
  494. b.HasOne("UnivateProperties_API.Model.Timeshare.Status", "Status")
  495. .WithMany()
  496. .HasForeignKey("StatusId");
  497. b.HasOne("UnivateProperties_API.Model.Timeshare.TimeshareWeek", "TimeshareWeek")
  498. .WithMany("BidItems")
  499. .HasForeignKey("TimeshareWeekId");
  500. });
  501. modelBuilder.Entity("UnivateProperties_API.Model.ProcessFlow.ProcessFlow", b =>
  502. {
  503. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  504. .WithMany("ProcessFlows")
  505. .HasForeignKey("PropertyID");
  506. b.HasOne("UnivateProperties_API.Model.Timeshare.Status", "Status")
  507. .WithMany()
  508. .HasForeignKey("StatusID")
  509. .OnDelete(DeleteBehavior.Cascade);
  510. b.HasOne("UnivateProperties_API.Model.Timeshare.TimeshareWeek", "Timeshare")
  511. .WithMany("ProcessFlows")
  512. .HasForeignKey("TimeshareID");
  513. });
  514. modelBuilder.Entity("UnivateProperties_API.Model.Properties.Property", b =>
  515. {
  516. b.HasOne("UnivateProperties_API.Model.Users.Agency", "Agency")
  517. .WithMany("Properties")
  518. .HasForeignKey("AgencyId");
  519. b.HasOne("UnivateProperties_API.Model.Users.Agent", "Agent")
  520. .WithMany("Properties")
  521. .HasForeignKey("AgentId");
  522. b.HasOne("UnivateProperties_API.Model.Region.City", "City")
  523. .WithMany()
  524. .HasForeignKey("CityId")
  525. .OnDelete(DeleteBehavior.Cascade);
  526. b.HasOne("UnivateProperties_API.Model.Users.Individual", "Owner")
  527. .WithMany("Properties")
  528. .HasForeignKey("OwnerId");
  529. b.HasOne("UnivateProperties_API.Model.Properties.PropertyType", "PropertyType")
  530. .WithMany()
  531. .HasForeignKey("PropertyTypeId")
  532. .OnDelete(DeleteBehavior.Cascade);
  533. b.HasOne("UnivateProperties_API.Model.Region.Province", "Province")
  534. .WithMany()
  535. .HasForeignKey("ProvinceId")
  536. .OnDelete(DeleteBehavior.Cascade);
  537. b.HasOne("UnivateProperties_API.Model.Timeshare.Status", "Status")
  538. .WithMany()
  539. .HasForeignKey("StatusId");
  540. b.HasOne("UnivateProperties_API.Model.Region.Suburb", "Suburb")
  541. .WithMany()
  542. .HasForeignKey("SuburbId")
  543. .OnDelete(DeleteBehavior.Cascade);
  544. });
  545. modelBuilder.Entity("UnivateProperties_API.Model.Properties.PropertyImage", b =>
  546. {
  547. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  548. .WithMany("PropertyImages")
  549. .HasForeignKey("PropertyId")
  550. .OnDelete(DeleteBehavior.Cascade);
  551. });
  552. modelBuilder.Entity("UnivateProperties_API.Model.Properties.PropertyUserField", b =>
  553. {
  554. b.HasOne("UnivateProperties_API.Model.Properties.Property", "Property")
  555. .WithMany("PropertyUserFields")
  556. .HasForeignKey("PropertyId")
  557. .OnDelete(DeleteBehavior.Cascade);
  558. b.HasOne("UnivateProperties_API.Model.Properties.UserDefinedField", "UserDefinedField")
  559. .WithMany()
  560. .HasForeignKey("UserDefinedFieldId")
  561. .OnDelete(DeleteBehavior.Cascade);
  562. });
  563. modelBuilder.Entity("UnivateProperties_API.Model.Properties.UserDefinedField", b =>
  564. {
  565. b.HasOne("UnivateProperties_API.Model.Properties.UserDefinedGroup", "Group")
  566. .WithMany("Fields")
  567. .HasForeignKey("GroupId")
  568. .OnDelete(DeleteBehavior.Cascade);
  569. });
  570. modelBuilder.Entity("UnivateProperties_API.Model.Region.City", b =>
  571. {
  572. b.HasOne("UnivateProperties_API.Model.Region.Province", "Province")
  573. .WithMany()
  574. .HasForeignKey("ProvinceId")
  575. .OnDelete(DeleteBehavior.Cascade);
  576. });
  577. modelBuilder.Entity("UnivateProperties_API.Model.Region.Suburb", b =>
  578. {
  579. b.HasOne("UnivateProperties_API.Model.Region.City", "City")
  580. .WithMany()
  581. .HasForeignKey("CityId")
  582. .OnDelete(DeleteBehavior.Cascade);
  583. });
  584. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.TimeshareWeek", b =>
  585. {
  586. b.HasOne("UnivateProperties_API.Model.Users.Agency", "Agency")
  587. .WithMany()
  588. .HasForeignKey("AgencyId");
  589. b.HasOne("UnivateProperties_API.Model.Users.Agent", "Agent")
  590. .WithMany()
  591. .HasForeignKey("AgentId");
  592. b.HasOne("UnivateProperties_API.Model.Users.Individual", "Owner")
  593. .WithMany()
  594. .HasForeignKey("OwnerId")
  595. .OnDelete(DeleteBehavior.Cascade);
  596. b.HasOne("UnivateProperties_API.Model.Region.Province", "Region")
  597. .WithMany()
  598. .HasForeignKey("RegionId")
  599. .OnDelete(DeleteBehavior.Cascade);
  600. b.HasOne("UnivateProperties_API.Model.Timeshare.Status", "Status")
  601. .WithMany()
  602. .HasForeignKey("StatusId")
  603. .OnDelete(DeleteBehavior.Cascade);
  604. });
  605. modelBuilder.Entity("UnivateProperties_API.Model.Timeshare.UnitConfigurationType", b =>
  606. {
  607. b.HasOne("UnivateProperties_API.Model.Timeshare.UnitConfiguration", "UnitConfiguration")
  608. .WithMany("Types")
  609. .HasForeignKey("UnitConfigurationId")
  610. .OnDelete(DeleteBehavior.Cascade);
  611. });
  612. modelBuilder.Entity("UnivateProperties_API.Model.Users.Agent", b =>
  613. {
  614. b.HasOne("UnivateProperties_API.Model.Users.Agency", "Agency")
  615. .WithMany("Agents")
  616. .HasForeignKey("AgencyId");
  617. b.HasOne("UnivateProperties_API.Model.Users.User", "User")
  618. .WithMany()
  619. .HasForeignKey("UserId");
  620. });
  621. modelBuilder.Entity("UnivateProperties_API.Model.Users.Individual", b =>
  622. {
  623. b.HasOne("UnivateProperties_API.Model.Misc.Address", "Address")
  624. .WithMany()
  625. .HasForeignKey("AddressId");
  626. b.HasOne("UnivateProperties_API.Model.Users.User", "User")
  627. .WithMany()
  628. .HasForeignKey("UserId");
  629. });
  630. #pragma warning restore 612, 618
  631. }
  632. }
  633. }