/// <summary> /// /// </summary> public BurritoDialog(Inventory _i) { try { //Spring.NET XmlApplicationContext ctx = new XmlApplicationContext("config/spring.cfg.xml"); bManager = (BurritoManager)ctx.GetObject("BurritoManager"); rand = new Random(); newBurrito = new Burrito(); curInventory = _i; initAvailableOptions(); } catch (Exception e) { dLog.Debug("Exception | Unable to initialize business layer components: " + e.Message + "\n" + e.StackTrace); } InitializeComponent(); }
protected void SetUp() { XmlConfigurator.Configure(new FileInfo("config/log4net.properties")); dLog.Info("Beginning BurritoManagerTestCase Setup"); rand = new Random(); try { //bManager = new BurritoManager(); //Spring.NET XmlApplicationContext ctx = new XmlApplicationContext("config/spring.cfg.xml"); bManager = (BurritoManager)ctx.GetObject("BurritoManager"); b = new Burrito(rand.Next(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), nextBool(), new Decimal(rand.NextDouble())); } catch (Exception e) { dLog.Error("Unable to initialize service/domain objects: " + e.Message + "\n" + e.InnerException + "\n" + e.StackTrace); } dLog.Info("Finishing BurritoManagerTestCase Setup"); }