DatabaseHelper update and Models

This commit is contained in:
Spudnut2000
2025-06-14 19:29:58 -05:00
parent 6324c85080
commit 275b2b29d2
12 changed files with 174 additions and 55 deletions

View File

@@ -5,22 +5,17 @@ namespace C969Project.Data;
public static class DatabaseHelper
{
public static List<User> Users { get; private set; } = new();
public static void Initialize()
{
PopulateUsers();
}
public static User? GetUserById(int userId)
public static User? Login(string username, string password)
{
User user = Users.Find(u => u.UserId == userId);
return user;
}
private static void PopulateUsers()
{
using MySqlConnection connection = new(AppSettings.GetSetting("ConnectionStrings", "DefaultConnection"));
using MySqlConnection connection =
new MySqlConnection(AppSettings.GetSetting("ConnectionStrings", "DefaultConnection"));
try
{
connection.Open();
@@ -28,36 +23,57 @@ public static class DatabaseHelper
catch (MySqlException ex)
{
Console.WriteLine(ex.Message);
throw;
}
string query = "SELECT * FROM client_schedule.user";
using MySqlCommand command = new(query, connection);
string query = $"SELECT * FROM client_schedule.user WHERE userName = '{username}'";
using MySqlCommand command = new MySqlCommand(query, connection);
using MySqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
int id = reader.GetInt32("userId");
string name = reader.GetString("userName");
string password = reader.GetString("password");
int active = reader.GetInt32("active");
DateTime createDate = reader.GetDateTime("createDate");
string createdBy = reader.GetString("createdBy");
var lastUpdated = reader.GetDateTime("lastUpdate"); // Timestap
string lastUpdateBy = reader.GetString("lastUpdateBy");
Console.WriteLine($"Id: {id}; Name: {name}; Password: {password}; Active: {active}; Created by: {createdBy}; Last Updated by: {lastUpdateBy}");
User user = new()
string pass = reader.GetString("password");
if (name == username && password == pass)
{
UserId = id,
Username = name,
Password = password,
Active = active,
CreateDate = createDate,
CreatedBy = createdBy,
LastUpdate = lastUpdated,
LastUpdateBy = lastUpdateBy
};
Users.Add(user);
int id = reader.GetInt32("userId");
return new User(id, name);
}
}
return null;
}
// private static void PopulateUsers()
// {
// using MySqlConnection connection = new(AppSettings.GetSetting("ConnectionStrings", "DefaultConnection"));
// try
// {
// connection.Open();
// }
// catch (MySqlException ex)
// {
// Console.WriteLine(ex.Message);
// throw;
// }
//
// string query = "SELECT * FROM client_schedule.user";
//
// using MySqlCommand command = new(query, connection);
// using MySqlDataReader reader = command.ExecuteReader();
// while (reader.Read())
// {
// int id = reader.GetInt32("userId");
// string name = reader.GetString("userName");
// string password = reader.GetString("password");
// int active = reader.GetInt32("active");
// DateTime createDate = reader.GetDateTime("createDate");
// string createdBy = reader.GetString("createdBy");
// var lastUpdated = reader.GetDateTime("lastUpdate"); // Timestap
// string lastUpdateBy = reader.GetString("lastUpdateBy");
// Console.WriteLine($"Id: {id}; Name: {name}; Password: {password}; Active: {active}; Created by: {createdBy}; Last Updated by: {lastUpdateBy}");
// var user = new User(id, name);
// Users.Add(user);
// }
// }
}

View File

@@ -0,0 +1,15 @@
namespace C969Project.Data.Models;
public class Address
{
public int Id { get; set; }
public string Address1 {get; set;}
public string Address2 {get; set;}
public int CityId {get; set;}
public string PostalCode {get; set;}
public string Phone {get; set;}
public DateTime CreateDate {get; set;}
public string CreatedBy {get; set;}
public DateTime LastUpdate {get; set;}
public string LastUpdateBy {get; set;}
}

View File

@@ -0,0 +1,20 @@
namespace C969Project.Data.Models;
public class Appointment
{
public int AppointmentId { get; set; }
public int CustomerId { get; set; }
public int UserId { get; set; }
public string Title { get; set; }
public string Description { get; set; }
public string Location { get; set; }
public string Contact { get; set; }
public string AppointmentType { get; set; }
public string Url {get; set;}
public DateTime Start { get; set; }
public DateTime End { get; set; }
public DateTime CreateDate { get; set; }
public string CreatedBy { get; set; }
public DateTime LastUpdate { get; set; }
public string LastUpdateBy { get; set; }
}

View File

@@ -0,0 +1,12 @@
namespace C969Project.Data.Models;
public class City
{
public int CityID { get; set; }
public string CityName { get; set; }
public int CountryID { get; set; }
public DateTime CreateDate { get; set; }
public string CreatedBy { get; set; }
public DateTime LastUpdate { get; set; }
public string LastUpdateBy { get; set; }
}

View File

@@ -0,0 +1,11 @@
namespace C969Project.Data.Models;
public class Country
{
public int CountryID { get; set; }
public string CountryName { get; set; }
public DateTime CreateDate { get; set; }
public string CreatedBy { get; set; }
public DateTime LastUpdate { get; set; }
public string LastUpdateBy { get; set; }
}

View File

@@ -0,0 +1,13 @@
namespace C969Project.Data.Models;
public class Customer
{
public int CustomerId { get; set; }
public string CustomerName { get; set; }
public int AddressId { get; set; }
public int Active { get; set; }
public DateTime CreateDate { get; set; }
public string CreatedBy { get; set; }
public DateTime LastUpdate { get; set; }
public string LastUpdateBy { get; set; }
}

View File

@@ -2,21 +2,12 @@ namespace C969Project.Data.Models;
public class User
{
// int id = reader.GetInt32("userId");
// string name = reader.GetString("userName");
// string password = reader.GetString("password");
// int active = reader.GetInt32("active");
// DateTime scheduled = reader.GetDateTime("createDate");
// string createdBy = reader.GetString("createdBy");
// var lastUpdated = reader.GetDateTime("lastUpdate"); // Timestap
// string lastUpdateBy = reader.GetString("lastUpdateBy");
public int UserId { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public int Active { get; set; }
public DateTime CreateDate { get; set; }
public string CreatedBy { get; set; }
public DateTime LastUpdate { get; set; }
public string LastUpdateBy { get; set; }
public User(int id, string username)
{
UserId = id;
Username = username;
}
}