Idea of the project: if someone wants to order a project development, here you can send an application.
using System.Data.SqlClient;
namespace ProjectRequestTest.Core
{
public interface IDataAccessService
{
SqlConnection SqlConn();
void ExecuteSQL(SqlCommand cmd);
}
}