Skip to content

πŸƒβ€β™‚οΈ Getting Started

Ρ€ΠΎΠ»Π•Π«Π΄Π΅Ρ€ edited this page Mar 26, 2022 · 3 revisions

Getting Started

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.

Prerequisites

To run the project successfully, you must have already installed the mentioned tools at Built With.

Installation

Below is an example of how to install and set up the project successfully.

  1. Make sure that you have installed all the tools mentioned above.
  2. Clone the repo
     git clone https://github.com/RolEYder/FacturationSystem.git
  3. Set the database
  4. 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;
          }
      }