Esempio n. 1
0
        public void PutThreeMeasurmentPointsIntoDatabase(ThreeMacIds threeMacIds)
        {
            using (var ctx = new SchoolContext())
            {
                var stud = new Student()
                {
                    StudentName = "Bill"
                };

                ctx.Students.Add(stud);
                ctx.SaveChanges();

                Console.WriteLine("Rekord dodany w bazie danych.");
            }
        }
Esempio n. 2
0
 public Point GetXYLocalizationPoint(ThreeMacIds threeMacIds)
 {
     throw new NotImplementedException();
 }