WinForms desktop application
Developed with the software and tools below.
Structure
└── Dental-Office/
├── .github
│ └── workflows
│ └── dotnet-desktop.yml
├── App.config
├── CodeMap1.dgml
├── DATA_DIJAGRAM.jpg
├── DodavanjeNovog.Designer.cs
├── DodavanjeNovog.cs
├── DodavanjeNovog.resx
├── Ikone
│ ├── add_new.ico
│ ├── add_new_16.png
│ ├── add_new_32.png
│ ├── dental_crown.ico
│ ├── dental_crown_16.png
│ ├── dental_crown_32.png
│ ├── direction.ico
│ ├── direction_16.png
│ ├── direction_32.png
│ ├── doctor.ico
│ ├── doctor_16.png
│ ├── doctor_32.png
│ ├── eye.ico
│ ├── eye_16.png
│ ├── eye_32.png
│ ├── info.ico
│ ├── info_16.png
│ ├── info_32.png
│ ├── list.ico
│ ├── list_16.png
│ ├── list_32.png
│ ├── patient.ico
│ ├── patient_16.png
│ ├── patient_32.png
│ ├── person.ico
│ ├── person_16.png
│ ├── person_32.png
│ ├── refresh.ico
│ ├── refresh_16.png
│ ├── refresh_32.png
│ ├── tooth.ico
│ ├── tooth_16.png
│ ├── tooth_32.png
│ ├── waste.ico
│ ├── waste_16.png
│ └── waste_32.png
├── LICENSE.txt
├── Model
│ ├── CnnString.cs
│ ├── IzvrsenPregled.cs
│ ├── Osoba.cs
│ ├── PodaciBaza.cs
│ └── Zakazivanje.cs
├── OsnovnaForma.Designer.cs
├── OsnovnaForma.cs
├── OsnovnaForma.resx
├── Program.cs
├── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── README.md
├── Zakazivanje_pregleda.Designer.cs
├── Zakazivanje_pregleda.cs
├── Zakazivanje_pregleda.resx
├── ZubarskaOrdinacija.bak
├── ZubarskaOrdinacija.csproj
└── ZubarskaOrdinacija.sln
.
File | Summary |
---|---|
DodavanjeNovog.Designer.cs | ► INSERT-TEXT-HERE |
DodavanjeNovog.cs | ► INSERT-TEXT-HERE |
OsnovnaForma.Designer.cs | ► INSERT-TEXT-HERE |
ZubarskaOrdinacija.csproj | ► INSERT-TEXT-HERE |
OsnovnaForma.cs | ► INSERT-TEXT-HERE |
LICENSE.txt | ► INSERT-TEXT-HERE |
ZubarskaOrdinacija.sln | ► INSERT-TEXT-HERE |
OsnovnaForma.resx | ► INSERT-TEXT-HERE |
Zakazivanje_pregleda.resx | ► INSERT-TEXT-HERE |
DodavanjeNovog.resx | ► INSERT-TEXT-HERE |
CodeMap1.dgml | ► INSERT-TEXT-HERE |
App.config | ► INSERT-TEXT-HERE |
Zakazivanje_pregleda.cs | ► INSERT-TEXT-HERE |
Program.cs | ► INSERT-TEXT-HERE |
Zakazivanje_pregleda.Designer.cs | ► INSERT-TEXT-HERE |
Model
File | Summary |
---|---|
PodaciBaza.cs | ► INSERT-TEXT-HERE |
IzvrsenPregled.cs | ► INSERT-TEXT-HERE |
Osoba.cs | ► INSERT-TEXT-HERE |
Zakazivanje.cs | ► INSERT-TEXT-HERE |
CnnString.cs | ► INSERT-TEXT-HERE |
Properties
File | Summary |
---|---|
Resources.resx | ► INSERT-TEXT-HERE |
AssemblyInfo.cs | ► INSERT-TEXT-HERE |
Settings.settings | ► INSERT-TEXT-HERE |
Resources.Designer.cs | ► INSERT-TEXT-HERE |
Settings.Designer.cs | ► INSERT-TEXT-HERE |
.github.workflows
File | Summary |
---|---|
dotnet-desktop.yml | ► INSERT-TEXT-HERE |
Requirements
Ensure you have the following dependencies installed on your system:
- CSharp:
version x.y.z
- Clone the Dental-Office repository:
git clone https://github.com/RRaleBG/Dental-Office
- Change to the project directory:
cd Dental-Office
- Install the dependencies:
dotnet build
Contributions are welcome! Here are several ways you can contribute:
- Submit Pull Requests: Review open PRs, and submit your own PRs.
- Join the Discussions: Share your insights, provide feedback, or ask questions.
- Report Issues: Submit bugs found or log feature requests for Dental-office.
Contributing Guidelines
- Fork the Repository: Start by forking the project repository to your GitHub account.
- Clone Locally: Clone the forked repository to your local machine using a Git client.
git clone https://github.com/RRaleBG/Dental-Office
- Create a New Branch: Always work on a new branch, giving it a descriptive name.
git checkout -b new-feature-x
- Make Your Changes: Develop and test your changes locally.
- Commit Your Changes: Commit with a clear message describing your updates.
git commit -m 'Implemented new feature x.'
- Push to GitHub: Push the changes to your forked repository.
git push origin new-feature-x
- Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
Once your PR is reviewed and approved, it will be merged into the main branch.