-
Notifications
You must be signed in to change notification settings - Fork 0
πββοΈ Getting Started
ΡΠΎΠ»ΠΠ«Π΄Π΅Ρ edited this page Mar 26, 2022
·
3 revisions
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
To run the project successfully, you must have already installed the mentioned tools at Built With.
Below is an example of how to install and set up the project successfully.
- Make sure that you have installed all the tools mentioned above.
- Clone the repo
git clone https://github.com/RolEYder/FacturationSystem.git
- Set the database
- Set your connection string. Open
Conexion.cs
at CapaAccesoDatos folder and replace it with your own connection string.
public SqlConnection sqlConnectionCursor()
{
try
{
SqlConnection cn = new SqlConnection();
cn.ConnectionString = "YOU-CONNECTION-STRING";
return cn;
}
catch (Exception)
{
throw;
}
}
FacturationSystem Wiki by ΡΠΎΠ»ΠΠ«Π΄Π΅Ρ