API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

WeekDto.cs 3.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using UnivateProperties_API.Helpers;
  5. using UnivateProperties_API.Model.Timeshare;
  6. namespace UnivateProperties_API.Containers.Timeshare
  7. {
  8. public class WeekDto
  9. {
  10. public WeekDto()
  11. {
  12. }
  13. public WeekDto(string line)
  14. {
  15. List<string> split = line.Split(",").ToList();
  16. AgentAsRep = false;
  17. Resort = new ResortDto(split[0].Trim(), split[0].Trim());
  18. UnitNumber = split[1].Trim();
  19. WeekNumber = split[2].Trim();
  20. var size = split[3].Trim();
  21. if(size.Length == 3 && !size.ToLower().StartsWith('s'))
  22. {
  23. int.TryParse(size.Substring(0, 1), out int temp);
  24. Bedrooms = temp;
  25. int.TryParse(size.Substring(2, 1), out temp);
  26. MaxSleep = temp;
  27. }
  28. bool currentYear = split[9].Trim() == "Y";
  29. LevyAmount = Convert.ToDouble(split[5].Trim());
  30. DateTime tempDate = MyCommon.GetDateFromString(currentYear ? split[6].Trim() : split[13].Trim());
  31. if(tempDate != DateTime.MinValue)
  32. {
  33. ArrivalDate = tempDate;
  34. }
  35. tempDate = MyCommon.GetDateFromString(currentYear ? split[7].Trim() : split[14].Trim());
  36. if(tempDate != DateTime.MinValue)
  37. {
  38. DepartureDate = tempDate;
  39. }
  40. Region = new RegionDto() { RegionCode = split[24] };
  41. }
  42. public WeekDto(TimeshareWeek week)
  43. {
  44. Id = week.Id;
  45. AgentAsRep = week.AgentAsRep;
  46. OtherResort = week.OtherResort;
  47. Agency = week.Agency?.AgencyName;
  48. Agent = $"{week.Agent?.Name} {week.Agent?.Surname}";
  49. Owner = $"{week.Owner?.Name} {week.Owner?.Surname}";
  50. Resort = new ResortDto(week.ResortCode, week.ResortName);
  51. Region = new RegionDto(week.Region != null ? week.Region.Id : 0, week.Region?.Description, week.Region?.Code);
  52. Status = new StatusDto(week.Status.Id, week.Status?.Code, week.Status?.Description);
  53. Bedrooms = week.Bedrooms;
  54. MaxSleep = week.MaxSleep;
  55. UnitNumber = week.UnitNumber;
  56. WeekNumber = week.WeekNumber;
  57. LevyAmount = week.LevyAmount;
  58. CurrentYearBanked = week.CurrentYearBanked;
  59. ArrivalDate = week.ArrivalDate;
  60. DepartureDate = week.DepartureDate;
  61. SellPrice = week.SellPrice;
  62. }
  63. public int Id { get; set; }
  64. public bool AgentAsRep { get; set; }
  65. public bool OtherResort { get; set; }
  66. public string Agency { get; set; }
  67. public string Agent { get; set; }
  68. public string Owner { get; set; }
  69. public ResortDto Resort { get; set; }
  70. public RegionDto Region { get; set; }
  71. public StatusDto Status { get; set; }
  72. public int Bedrooms { get; set; }
  73. public int MaxSleep { get; set; }
  74. public string UnitNumber { get; set; }
  75. public string WeekNumber { get; set; }
  76. public double LevyAmount { get; set; }
  77. public bool CurrentYearBanked { get; set; }
  78. public string BankedWith { get; set; }
  79. public DateTime ArrivalDate { get; set; }
  80. public DateTime DepartureDate { get; set; }
  81. public double SellPrice { get; set; }
  82. }
  83. }