Exemplo n.º 1
0
 public LegsArmor(int id)
 {
     try
     {
         DataAccess.LegsArmor DalLegsArmor = new DataAccess.LegsArmor();
         BuildArmor(DalLegsArmor.GetLegsArmor(id));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Exemplo n.º 2
0
 public LegsArmor(string name)
 {
     try
     {
         DataAccess.LegsArmor DalLegsArmor = new DataAccess.LegsArmor();
         BuildArmor(DalLegsArmor.GetLegsArmor(name));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }