Files
icarus/Models/Context/YearStoreContext.cs
T

34 lines
494 B
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using MySql.Data.MySqlClient;
using Icarus.Models;
namespace Icarus.Models.Context
{
// TODO: Implement Year store #42
public class YearStoreContext : BaseStoreContext
{
#region Fields
#endregion
#region Properties
#endregion
#region Constructors
public YearStoreContext(string connectionString)
{
_connectionString = connectionString;
}
#endregion
#region Methods
#endregion
}
}