Example #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Begening of the application");

            ConnectionLoRa LoRa = new ConnectionLoRa();

            JSON Traitement = new JSON(LoRa.GetData());

            ConnectionBDD Bdd = new ConnectionBDD();

            Bdd.SendData(Traitement.DataDeserialized);
        }
Example #2
0
        private string TranslateDevEUItoId(string DevEUI)
        {
            ConnectionBDD DevEUICheck = new ConnectionBDD();

            return(DevEUICheck.GetDevEUI(DevEUI));
        }