public void BranchesTest()
 {
     BranchResistance target = new BranchResistance(); // TODO: Initialize to an appropriate value
     EntityCollection<Branch> expected = null; // TODO: Initialize to an appropriate value
     EntityCollection<Branch> actual;
     target.Branches = expected;
     actual = target.Branches;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the BranchResistances EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToBranchResistances(BranchResistance branchResistance)
 {
     base.AddObject("BranchResistances", branchResistance);
 }
 /// <summary>
 /// Create a new BranchResistance object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="initialBranchResistance">Initial value of the InitialBranchResistance property.</param>
 /// <param name="currentBranchResistance">Initial value of the CurrentBranchResistance property.</param>
 /// <param name="minimalBranchResistance">Initial value of the MinimalBranchResistance property.</param>
 /// <param name="maximalBranchResistance">Initial value of the MaximalBranchResistance property.</param>
 public static BranchResistance CreateBranchResistance(global::System.Int32 id, global::System.Double initialBranchResistance, global::System.Double currentBranchResistance, global::System.Double minimalBranchResistance, global::System.Double maximalBranchResistance)
 {
     BranchResistance branchResistance = new BranchResistance();
     branchResistance.Id = id;
     branchResistance.InitialBranchResistance = initialBranchResistance;
     branchResistance.CurrentBranchResistance = currentBranchResistance;
     branchResistance.MinimalBranchResistance = minimalBranchResistance;
     branchResistance.MaximalBranchResistance = maximalBranchResistance;
     return branchResistance;
 }
 public void CurrentBranchResistanceTest()
 {
     BranchResistance target = new BranchResistance(); // TODO: Initialize to an appropriate value
     double expected = 0F; // TODO: Initialize to an appropriate value
     double actual;
     target.CurrentBranchResistance = expected;
     actual = target.CurrentBranchResistance;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void BranchResistanceConstructorTest()
 {
     BranchResistance target = new BranchResistance();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void IdTest()
 {
     BranchResistance target = new BranchResistance(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     target.Id = expected;
     actual = target.Id;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
        /// <summary>
        /// Insert specified branch Resistance in database
        /// </summary>
        /// <param name="dto">dto data for branch Resistance</param>
        public void InsertBranchResistance(BranchResistanceDto dto)
        {
            try
            {
                //Before any action, it must be updated because calls from contract uses
                //only one instance of UserManager.
                dbContext.Refresh(System.Data.Objects.RefreshMode.StoreWins, dbContext.BranchResistances);
                BranchResistance brRtc = new BranchResistance();

                brRtc.Id = dto.Id;
                brRtc.InitialBranchResistance = dto.InitialBranchResistance;
                brRtc.CurrentBranchResistance = dto.CurrentBranchResistance;
                brRtc.MinimalBranchResistance = dto.MinimalBranchResistance;
                brRtc.MaximalBranchResistance = dto.MaximalBranchResistance;

                //Adds new branch Resistance details to context
                dbContext.BranchResistances.AddObject(brRtc);

                //saves changes.
                dbContext.SaveChanges();
            }
            catch (Exception exception)
            {
                throw new Exception("SmartGridDataMenagers: " + exception.Message);
            }
        }