Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 |
[Serializable] public class Address : Entity, IAddress { [NonSerialized] protected IEntity _baseDALEntity; private IEntityId _figureId; private DateTime? _beginDate, _endDate; private string _comment, _postIndex, _displayMember; private string _regionCode, _areaCode, _townCode, _streetCode, _area, _town, _street, _houseNum, _building, _flatNum, _stroenie; private AddressTypeID _addressTypeId; private AddressHouseTypeID? _houseTypeId; private AddressFlatTypeID? _flatTypeId; private Enums _countryId; #region Constructors internal Address(IEntityId entityId) : (DAL, entityId) { LoadEntity(null); } internal Address(AddressEntity dalEntity) : (dalEntity) { LoadEntity(null); } #endregion #region Public Properties public DateTime? BeginDate { get {return _beginDate; } set {_beginDate = value; } } public DateTime? EndDate { get {return _endDate; } set {_endDate = value; } } public Enums CountryId { get {return _countryId; } set {_countryId = value; } } public string Comment { get {return _comment; } set {_comment = value; } } public AddressTypeID TypeId { get {return _addressTypeId; } set {_addressTypeId = value; } } public AddressHouseTypeID? HouseTypeId { get {return _houseTypeId; } set {_houseTypeId = value; } } public AddressFlatTypeID? FlatTypeId { get {return _flatTypeId; } set {_flatTypeId = value; } } public string PostIndex { get {return _postIndex; } set {_postIndex = value; } } public string RegionCode { get {return _regionCode; } set {_regionCode = value; } } public string AreaCode { get {return _areaCode; } set {_areaCode = value; } } public string TownCode { get {return _townCode; } set {_townCode = value; } } public string StreetCode { get {return _streetCode; } set {_streetCode = value; } } public string Area { get {return _area; } set {_area = value; } } public string Town { get {return _town; } set {_town = value; } } public string Street { get {return _street; } set {_street = value; } } public string HouseNum { get {return _houseNum; } set {_houseNum = value; } } public string FlatNum { get {return _flatNum; } set {_flatNum = value; } } public string Building { get {return _building; } set {_building = value; } } public string Stroenie { get {return _stroenie; } set {_stroenie = value; } } public IEntityId FigureId { get {return _figureId; } set {_figureId = value; } } #endregion [rgn] public override string DisplayMember { get {return _displayMember; } } public new virtual void LoadEntity(Hashtable data) { if(BaseDALEntity) { TypeId = AddressTypeID; BeginDate = DateTime; Comment = ""; CountryId = Asset; RegionCode = "7700000000000"; // Регион Москва _displayMember = ""; } else { AddressEntity e = (AddressEntity)BaseDALEntity; BeginDate = e; EndDate = e; TypeId = (AddressTypeID)e; if(e != null) HouseTypeId = (AddressHouseTypeID)e; if(e != null) FlatTypeId = (AddressFlatTypeID)e; CountryId = (Enums)e; RegionCode = e; PostIndex = e; AreaCode = e; Area = e; TownCode = e; Town = e; StreetCode = e; Street = e; Building = e; HouseNum = e; FlatNum = e; Stroenie = e; Comment = e; if(e != null) { FigureId = Layer((Guid)e); _displayMember = Layer(e); } } //FigureRoleCollection = new Collections(EntityId); } internal IEntity DALEntity { get {return _baseDALEntity; } private set {_baseDALEntity = value; } } private void DataValidate() { if(!string(AreaCode) && !string(Area)) throw new BLValidateException("В адресе может быть заполнено только одно значение для поля 'Район'."); if(!string(TownCode) && !string(Town)) throw new BLValidateException( "В адресе может быть заполнено только одно значение для поля 'Населенный пункт'."); if(!string(StreetCode) && !string(Street)) throw new BLValidateException("В адресе может быть заполнено только одно значение для поля 'Улица'."); } public override void PopulateDALEntityWithData() { base(); AddressEntity e = (AddressEntity)BaseDALEntity; //Проверка данных DataValidate(); PopulateDALField(AddressFieldIndex(), (int)TypeId); PopulateDALField(AddressFieldIndex(), (int?)HouseTypeId); PopulateDALField(AddressFieldIndex(), (int?)FlatTypeId); PopulateDALField(AddressFieldIndex(), BeginDate); PopulateDALField(AddressFieldIndex(), EndDate); PopulateDALField(AddressFieldIndex(), PostIndex); PopulateDALField(AddressFieldIndex(), (int)CountryId); PopulateDALField(AddressFieldIndex(), RegionCode); PopulateDALField(AddressFieldIndex(), AreaCode); PopulateDALField(AddressFieldIndex(), Area); PopulateDALField(AddressFieldIndex(), TownCode); PopulateDALField(AddressFieldIndex(), Town); PopulateDALField(AddressFieldIndex(), StreetCode); PopulateDALField(AddressFieldIndex(), Street); PopulateDALField(AddressFieldIndex(), Building); PopulateDALField(AddressFieldIndex(), HouseNum); PopulateDALField(AddressFieldIndex(), FlatNum); PopulateDALField(AddressFieldIndex(), Stroenie); PopulateDALField(AddressFieldIndex(), Comment); if(e || !Equals(e, FigureId == null ? null : (Guid?)FigureId)) e = (Guid)FigureId; } public override Interfaces Duplicate() { IAddress result = (IAddress)base(); result = AddressTypeID; result = FigureId; result = Comment; result = HouseTypeId; result = FlatTypeId; result = BeginDate; result = EndDate; result = PostIndex; result = CountryId; result = RegionCode; result = AreaCode; result = Area; result = TownCode; result = Town; result = StreetCode; result = Street; result = Building; result = HouseNum; result = FlatNum; result = Stroenie; return result; } //public override void CustomSaveEntity(UnitOfWork uow) //{ // base(uow); //} //public override void CustomDeleteEntity(UnitOfWork uow) //{ // base(uow); //} } |