Files
icarus/Models/Context/BaseStoreContext.cs
T

22 lines
322 B
C#

using System;
using MySql.Data.MySqlClient;
namespace Icarus.Models.Context
{
public class BaseStoreContext
{
#region Fields
protected string _connectionString;
#endregion
#region Methods
protected MySqlConnection GetConnection()
{
return new MySqlConnection(_connectionString);
}
#endregion
}
}