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 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
UI Layer
private void SaveEquipment()
{
int guid = new EquipmentService().SaveEquipment(GetEquipmentFromFormFields());
}
private Equipment GetEquipmentFromFormFields()
{
if (OriginalEquipment != null)
{
OriginalEquipment.Make = Make;
OriginalEquipment.Description = Description;
OriginalEquipment.EquipmentType = new CustomType(OwnershipId, OwnershipDescription);
OriginalEquipment.Serial = Serial;
OriginalEquipment.SvcNumber = SvcNumber;
OriginalEquipment.OwnershipStatus = new CustomType(OwnershipId, OwnershipDescription);
OriginalEquipment.PurchaseYear = PurchaseYear;
OriginalEquipment.PurchaseRequestYear = PurchaseRequestYear;
OriginalEquipment.CurrentLocation = new CustomType(CurrentLocationId, CurrentLocationName);
OriginalEquipment.IsDHCP = IsDHCP;
OriginalEquipment.Subnet = Subnet;
OriginalEquipment.IPAddress = IPAddress;
OriginalEquipment.Gateway = Gateway;
OriginalEquipment.Mask = Mask;
OriginalEquipment.DNSOne = DNSOne;
OriginalEquipment.DNSTwo = DNSTwo;
OriginalEquipment.Status = new CustomType(EquipmentStatusId, EquipmentStatusName);
}
else
{
OriginalEquipment = new Equipment(
EquipmentGuid
, EquipmentName
, Make
, Description
, new CustomType(TypeId, TypeDescription)
, Serial
, SvcNumber
, new CustomType(OwnershipId, OwnershipDescription)
, PurchaseYear
, PurchaseRequestYear
, new CustomType(CurrentLocationId, CurrentLocationName)
, IsDHCP
, Subnet
, IPAddress
, Gateway
, Mask
, DNSOne
, DNSTwo
, LastChangeDate
, new CustomType(EquipmentStatusId, EquipmentStatusName)
);
}
return OriginalEquipment;
}
private Equipment OriginalEquipment
{
get
{
if (Session["OriginalEquipment"] != null)
return Session["OriginalEquipment"] as Equipment;
else
return null;
}
set { Session["OriginalEquipment"] = value; }
}
// Model Layer
namespace Model
{
public class Equipment
{
private int? _guid;
private string _name;
private string _make;
private string _description;
private CustomType _equipmentType;
private string _serial;
private string _svcNumber;
private CustomType _ownershipStatus;
private string _purchaseYear;
private string _purchaseRequestYear;
private CustomType _currentLocation;
private int _isDHCP;
private string _subnet;
private string _ipAddress;
private string _gateway;
private string _mask;
private string _dnsOne;
private string _dnsTwo;
private DateTime? _lastChangeDate;
private CustomType _status;
private Dictionary<string, string> _dirtyProperties = new Dictionary<string, string>();
public Equipment() { }
public Equipment(
int? guid
, string name
, string make
, string description
, CustomType equipmentType
, string serial
, string svcNumber
, CustomType ownershipStatus
, string purchaseYear
, string purchaseRequestYear
, CustomType currentLocation
, int isDHCP
, string subnet
, string ipAddress
, string gateway
, string mask
, string dnsOne
, string dnsTwo
, DateTime? lastChangeDate
, CustomType status
)
{
Guid = guid;
Name = name;
Make = make;
Description = description;
EquipmentType = equipmentType;
Serial = serial;
SvcNumber = svcNumber;
OwnershipStatus = ownershipStatus;
PurchaseYear = purchaseYear;
PurchaseRequestYear = purchaseRequestYear;
CurrentLocation = currentLocation;
IsDHCP = isDHCP;
Subnet = subnet;
IPAddress = ipAddress;
Gateway = gateway;
Mask = mask;
DNSOne = dnsOne;
DNSTwo = dnsTwo;
Status = status;
}
public int? Guid
{
get { return _guid; }
private set
{
if (value.HasValue)
{
if (value <= 0)
throw new Exception("Invalid Guid");
if (_guid != null && _guid != value && !_dirtyProperties.ContainsKey("equipment_id"))
_dirtyProperties.Add("equipment_id", value.ToString());
_guid = value;
}
}
}
public string Name
{
get { return _name; }
private set
{
if (string.IsNullOrEmpty(value))
throw new Exception("Invalid Equipment Name");
if (_name != null && _name != value && !_dirtyProperties.ContainsKey("equipment_name"))
_dirtyProperties.Add("equipment_name", value);
_name = value;
}
}
public string Make
{
get { return _make; }
set
{
if (_make != null && _make != value && !_dirtyProperties.ContainsKey("make_model"))
_dirtyProperties.Add("make_model", value);
_make = value;
}
}
public string Description
{
get { return _description; }
set
{
if (_description != null && _description != value && !_dirtyProperties.ContainsKey("short_desc"))
_dirtyProperties.Add("short_desc", value);
_description = value;
}
}
public CustomType EquipmentType
{
get { return _equipmentType; }
set
{
if (_equipmentType != null && _equipmentType != value && !_dirtyProperties.ContainsKey("equipment_type_id"))
_dirtyProperties.Add("equipment_type_id", value.Id);
_equipmentType = value;
}
}
public string Serial
{
get { return _serial; }
set
{
if (_serial != null && _serial != value && !_dirtyProperties.ContainsKey("serial_number"))
_dirtyProperties.Add("serial_number", value);
_serial = value;
}
}
public string SvcNumber
{
get { return _svcNumber; }
set
{
if (_svcNumber != null && _svcNumber != value && !_dirtyProperties.ContainsKey("service_number"))
_dirtyProperties.Add("service_number", value);
_svcNumber = value;
}
}
public CustomType OwnershipStatus
{
get { return _ownershipStatus; }
set
{
if (_ownershipStatus != null && _ownershipStatus != value && !_dirtyProperties.ContainsKey("ownership_status"))
_dirtyProperties.Add("ownership_status", value.Id);
_ownershipStatus = value;
}
}
public string PurchaseYear
{
get { return _purchaseYear; }
set
{
if (!string.IsNullOrEmpty(value))
{
if (!Helper.IsStringNumeric(value) || value.Length != 4)
throw new Exception("Invalid Purchase Year");
if (_purchaseYear != null && _purchaseYear != value && !_dirtyProperties.ContainsKey("purchase_date"))
_dirtyProperties.Add("purchase_date", value);
_purchaseYear = value;
}
}
}
public string PurchaseRequestYear
{
get { return _purchaseRequestYear; }
set
{
if (!string.IsNullOrEmpty(value))
{
if (!Helper.IsStringNumeric(value) || value.Length != 4)
throw new Exception("Invalid Purchase Request Year");
if (_purchaseRequestYear != null && _purchaseRequestYear != value && !_dirtyProperties.ContainsKey("purchase_req_date"))
_dirtyProperties.Add("purchase_req_date", value);
_purchaseRequestYear = value;
}
}
}
public CustomType CurrentLocation
{
get { return _currentLocation; }
set
{
if (_currentLocation != null && _currentLocation != value && !_dirtyProperties.ContainsKey("current_location_id"))
_dirtyProperties.Add("current_location_id", value.Id);
_currentLocation = value;
}
}
public int IsDHCP
{
get { return _isDHCP; }
set
{
if (_isDHCP != null && _isDHCP != value && !_dirtyProperties.ContainsKey("dhcp"))
_dirtyProperties.Add("dhcp", value.ToString());
_isDHCP = value;
}
}
public string Subnet
{
get { return _subnet; }
set
{
if (_subnet != null && _subnet != value && !_dirtyProperties.ContainsKey("subnet"))
_dirtyProperties.Add("subnet", value);
_subnet = value;
}
}
public string IPAddress
{
get { return _ipAddress; }
set
{
if (_ipAddress != null && _ipAddress != value && !_dirtyProperties.ContainsKey("ipaddr"))
_dirtyProperties.Add("ipaddr", value);
_ipAddress = value;
}
}
public string Gateway
{
get { return _gateway; }
set
{
if (_gateway != null && _gateway != value && !_dirtyProperties.ContainsKey("default_gateway"))
_dirtyProperties.Add("default_gateway", value);
_gateway = value;
}
}
public string Mask
{
get { return _mask; }
set
{
if (_mask != null && _mask != value && !_dirtyProperties.ContainsKey("netmask"))
_dirtyProperties.Add("netmask", value);
_mask = value;
}
}
public string DNSOne
{
get { return _dnsOne; }
set
{
if (_dnsOne != null && _dnsOne != value && !_dirtyProperties.ContainsKey("dns_1"))
_dirtyProperties.Add("dns_1", value);
_dnsOne = value;
}
}
public string DNSTwo
{
get { return _dnsTwo; }
set
{
if (_dnsTwo != null && _dnsTwo != value && !_dirtyProperties.ContainsKey("dns_2"))
_dirtyProperties.Add("dns_2", value);
_dnsTwo = value;
}
}
public DateTime? LastChangeDate
{
get { return _lastChangeDate; }
private set
{
if (value.HasValue)
_lastChangeDate = value;
}
}
public CustomType Status
{
get { return _status; }
set
{
if (_status != null && _status != value && !_dirtyProperties.ContainsKey("equipment_status_id"))
_dirtyProperties.Add("equipment_status_id", value.Id);
_status = value;
}
}
public Dictionary<string, string> DirtyProperties
{
get { return _dirtyProperties; }
set { _dirtyProperties = value; }
}
}
// CustomType Class
public class CustomType
{
private string _id;
private string _description;
public CustomType() { }
public CustomType(string id)
{
Id = id;
Description = string.Empty;
}
public CustomType(string id, string description)
{
Id = id;
Description = description;
}
public string Id
{
get { return _id; }
set { _id = value; }
}
public string Description
{
get { return _description; }
set { _description = value; }
}
}
}
namespace DAL
{
public class EquipmentDB
{
public bool UpdateEquipment(Equipment entity)
{
if (entity.DirtyProperties.Count < 1)
return false;
bool updated;
using (TransactionScope myScope = new TransactionScope(TransactionScopeOption.Required))
{
using (SqlConnection myConnection = new SqlConnection(AppConfiguration.ConnectionString))
{
using (SqlCommand myCommand = new SqlCommand("ts_create_or_match_equipment_2", myConnection))
{
foreach (KeyValuePair<string, string> kvp in entity.DirtyProperties)
{
if (kvp.Key == "equipment_type_id"
|| kvp.Key == "current_location_id"
|| kvp.Key == "dhcp"
|| kvp.Key == "equipment_status_id")
myCommand.Parameters.Add("@" + kvp.Key, SqlDbType.Int).Value = Int32.Parse(kvp.Value);
else if (kvp.Key == "LastChangeDate")
myCommand.Parameters.Add("@" + kvp.Key, SqlDbType.DateTime).Value = DateTime.Parse(kvp.Value);
else
myCommand.Parameters.AddWithValue("@" + kvp.Key, kvp.Value);
}
myCommand.CommandType = CommandType.StoredProcedure;
myConnection.Open();
myCommand.ExecuteNonQuery();
updated = true;
}
myConnection.Close();
}
myScope.Complete();
}
return true;
}
public int InsertEquipment(Equipment entity)
{
int id = 0;
using (TransactionScope myScope = new TransactionScope(TransactionScopeOption.Required))
{
using (SqlConnection myConnection = new SqlConnection(AppConfiguration.ConnectionString))
{
using (SqlCommand myCommand = new SqlCommand("ts_create_or_match_equipment_2", myConnection))
{
myCommand.Parameters.Add("@equipment_name", SqlDbType.VarChar, 64).Value = entity.Name;
myCommand.Parameters.Add("@make_model", SqlDbType.VarChar, 64).Value = entity.Make;
myCommand.Parameters.Add("@short_desc", SqlDbType.VarChar, 64).Value = entity.Description;
if (!string.IsNullOrEmpty(entity.EquipmentType.Id))
myCommand.Parameters.Add("@equipment_type_id", SqlDbType.Int).Value = Int32.Parse(entity.EquipmentType.Id);
myCommand.Parameters.Add("@serial_number", SqlDbType.VarChar, 64).Value = entity.Serial;
myCommand.Parameters.Add("@service_number", SqlDbType.VarChar, 64).Value = entity.SvcNumber;
myCommand.Parameters.Add("@ownership_status", SqlDbType.Char).Value = entity.OwnershipStatus.Id;
myCommand.Parameters.Add("@current_location_id", SqlDbType.Int).Value = Int32.Parse(entity.CurrentLocation.Id);
myCommand.Parameters.Add("@dhcp", SqlDbType.Int).Value = entity.IsDHCP;
myCommand.Parameters.Add("@subnet", SqlDbType.VarChar, 20).Value = entity.Subnet;
myCommand.Parameters.Add("@ipaddr", SqlDbType.VarChar, 20).Value = entity.IPAddress;
myCommand.Parameters.Add("@default_gateway", SqlDbType.VarChar, 20).Value = entity.Gateway;
myCommand.Parameters.Add("@netmask", SqlDbType.VarChar, 20).Value = entity.Mask;
myCommand.Parameters.Add("@dns_1", SqlDbType.VarChar, 20).Value = entity.DNSOne;
myCommand.Parameters.Add("@dns_2", SqlDbType.VarChar, 20).Value = entity.DNSTwo;
myCommand.Parameters.Add("@equipment_status_id", SqlDbType.Int).Value = Int32.Parse(entity.Status.Id);
myCommand.CommandType = CommandType.StoredProcedure;
myConnection.Open();
id = myCommand.ExecuteNonQuery();
}
myConnection.Close();
}
myScope.Complete();
}
return id;
}
}
}
Refactorings
No refactoring yet !
tawani
April 22, 2009, April 22, 2009 13:29, permalink
Your DAL is horrible. Use an ORM such as Linq or NHibernate or even this simple one: http://www.codeproject.com/KB/database/LightORMLibrary.aspx
use automatic properties for your classes
1 2 3 4 5 6 7 8
// CustomType Class public class CustomType { public string Id{get;set;} public string Description{get;set;} } e.g. CustomType ct = new CustomType(){Description = "Some Description"};
escapetherace
April 25, 2009, April 25, 2009 07:05, permalink
What's so horrible about the DAL? Sure, all those parameters don't make for attractive code, but that's what you get without using ORMs. Do you mean the design is horrible, or just the appearance?
SAM
June 23, 2009, June 23, 2009 09:26, permalink
Use ArgumentNullException and ArgumentException in place of 'Exception' for validation errors.
Please help me refactor this so that it is alot more simplified. I have numerous other model classes that do the same thing
Thanks in advance