Created NavData Model
Create Navdata Model and add Navata controller (Currently empty)
This commit is contained in:
45
Models/NavdataModel.cs
Normal file
45
Models/NavdataModel.cs
Normal file
@ -0,0 +1,45 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using MySql.Data.MySqlClient;
|
||||
|
||||
namespace EFB.Models
|
||||
{
|
||||
public class NavdataModel
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public int? Frequency { get; set; }
|
||||
public string Latitude { get; set; }
|
||||
public string Longitude { get; set; }
|
||||
|
||||
|
||||
public NavdataModel(int id, string name, string latitude, string longitude){
|
||||
Id = id;
|
||||
Name = name;
|
||||
Frequency = null;
|
||||
Latitude = latitude;
|
||||
Longitude = longitude;
|
||||
}
|
||||
|
||||
public NavdataModel(int id, string name, int frequency, string latitude, string longitude){
|
||||
Id = id;
|
||||
Name = name;
|
||||
Frequency = frequency;
|
||||
Latitude = latitude;
|
||||
Longitude = longitude;
|
||||
}
|
||||
|
||||
public NavdataModel[] Populate(){
|
||||
MySqlConnection db = new MySqlConnection("root:XXXXXXX@XXX.XXX.XXX.XXX:3306/EFB");
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user