├── test.txt
├── Andricsak
├── Laborator
│ ├── Laborator3
│ │ ├── test.txt
│ │ ├── Laborator2.csproj
│ │ └── Program.cs
│ ├── Laborator2
│ │ ├── appsettings.json
│ │ ├── appsettings.Development.json
│ │ ├── Studenti.cs
│ │ ├── Laborator2.csproj
│ │ ├── Student.cs
│ │ ├── Program.cs
│ │ ├── Controllers
│ │ │ ├── ValuesController.cs
│ │ │ └── StudentController.cs
│ │ └── Startup.cs
│ ├── Laborator5WebJob
│ │ ├── StudentsAPI
│ │ │ ├── appsettings.json
│ │ │ ├── appsettings.Development.json
│ │ │ ├── StudentsAPI.csproj
│ │ │ ├── StudentModel.cs
│ │ │ ├── Student.cs
│ │ │ ├── Program.cs
│ │ │ ├── .vscode
│ │ │ │ ├── launch.json
│ │ │ │ └── tasks.json
│ │ │ ├── Startup.cs
│ │ │ ├── Controllers
│ │ │ │ └── StudentsController.cs
│ │ │ └── StudentsService.cs
│ │ └── WebJob
│ │ │ ├── WebJob.csproj
│ │ │ ├── StudentEntity.cs
│ │ │ └── Program.cs
│ ├── Laborator6WebQueue
│ │ ├── StudentsAPI
│ │ │ ├── appsettings.json
│ │ │ ├── appsettings.Development.json
│ │ │ ├── StudentModel.cs
│ │ │ ├── StudentsAPI.csproj
│ │ │ ├── Student.cs
│ │ │ ├── Program.cs
│ │ │ ├── .vscode
│ │ │ │ ├── launch.json
│ │ │ │ └── tasks.json
│ │ │ ├── Startup.cs
│ │ │ ├── StudentsService.cs
│ │ │ └── Controllers
│ │ │ │ └── StudentsController.cs
│ │ └── Receive
│ │ │ ├── Receive.csproj
│ │ │ ├── Student.cs
│ │ │ └── Program.cs
│ └── Laborator4Azure
│ │ ├── Andricsak.csproj
│ │ ├── StudentEntity.cs
│ │ └── Program.cs
└── Proiect
│ └── AnimalDanger
│ ├── react-client
│ ├── build
│ │ ├── robots.txt
│ │ ├── favicon.ico
│ │ ├── logo192.png
│ │ ├── logo512.png
│ │ ├── static
│ │ │ ├── css
│ │ │ │ ├── main.a8cd3667.chunk.css
│ │ │ │ └── main.a8cd3667.chunk.css.map
│ │ │ └── js
│ │ │ │ ├── runtime-main.297d04f9.js
│ │ │ │ └── main.767cb65b.chunk.js
│ │ ├── manifest.json
│ │ ├── precache-manifest.33e5e80196ca2f57e47bf86f453e2024.js
│ │ ├── service-worker.js
│ │ ├── asset-manifest.json
│ │ └── index.html
│ ├── public
│ │ ├── robots.txt
│ │ ├── favicon.ico
│ │ ├── logo192.png
│ │ ├── logo512.png
│ │ ├── manifest.json
│ │ └── index.html
│ ├── src
│ │ ├── components
│ │ │ ├── nature.jpeg
│ │ │ ├── Login.css
│ │ │ ├── NavMenu.css
│ │ │ ├── Home.js
│ │ │ ├── Layout.js
│ │ │ ├── PrivateRoute.js
│ │ │ ├── NavMenu.js
│ │ │ ├── Intro.css
│ │ │ ├── ViewAnimals.js
│ │ │ ├── Login.js
│ │ │ └── AddAnimal.js
│ │ ├── App.test.js
│ │ ├── App.css
│ │ ├── index.css
│ │ ├── index.js
│ │ ├── App.js
│ │ └── serviceWorker.js
│ ├── .gitignore
│ └── package.json
│ ├── AnimalDanger
│ ├── appsettings.Development.json
│ ├── Models
│ │ ├── AnimalType.cs
│ │ ├── Alert.cs
│ │ └── Animal.cs
│ ├── appsettings.json
│ ├── Repositories
│ │ ├── IAnimalRepo.cs
│ │ ├── AnimalRepo.cs
│ │ └── AlertRepo.cs
│ ├── Program.cs
│ ├── AnimalDangerApi.csproj
│ ├── Startup.cs
│ └── Controllers
│ │ └── AnimalController.cs
│ ├── BackgroundWorker
│ ├── Models
│ │ ├── AnimalType.cs
│ │ ├── Alert.cs
│ │ └── Animal.cs
│ ├── BackgroundWorker.csproj
│ ├── Settings.job
│ ├── Program.cs
│ ├── Operations
│ │ └── AreaOperations.cs
│ └── Repositories
│ │ └── AlertRepo.cs
│ └── AnimalDanger.sln
├── _Exemple
├── Lab 5
│ └── AzureFunction
│ │ ├── host.json
│ │ ├── .vscode
│ │ ├── extensions.json
│ │ ├── settings.json
│ │ ├── launch.json
│ │ └── tasks.json
│ │ ├── local.settings.json
│ │ ├── Models
│ │ ├── BankTransactionStatistics.cs
│ │ └── BankTransaction.cs
│ │ ├── AzureFunction.csproj
│ │ └── TableStorageAzureFunction.cs
├── Lab 6
│ ├── AzureFunction
│ │ ├── host.json
│ │ ├── .vscode
│ │ │ ├── extensions.json
│ │ │ ├── settings.json
│ │ │ ├── launch.json
│ │ │ └── tasks.json
│ │ ├── Models
│ │ │ ├── QueueMessage.cs
│ │ │ ├── BankTransactionStatistics.cs
│ │ │ └── BankTransaction.cs
│ │ ├── local.settings.json
│ │ ├── AzureFunction.csproj
│ │ ├── BankTransactionQueueFunction.cs
│ │ └── TableStorageAzureFunction.cs
│ └── QueueConsoleApp
│ │ ├── QueueConsoleApp.csproj
│ │ ├── Models
│ │ └── QueueMessage.cs
│ │ ├── .vscode
│ │ ├── launch.json
│ │ └── tasks.json
│ │ └── Program.cs
├── AzureFunc-WebApi
│ ├── AzureFunction
│ │ ├── host.json
│ │ ├── .vscode
│ │ │ ├── extensions.json
│ │ │ ├── settings.json
│ │ │ ├── launch.json
│ │ │ └── tasks.json
│ │ ├── local.settings.json
│ │ ├── Models
│ │ │ └── MyValue.cs
│ │ ├── AzureFunction.csproj
│ │ └── ServiceBusQueueTriggerCSharp.cs
│ └── WebApi
│ │ ├── appsettings.Development.json
│ │ ├── appsettings.json
│ │ ├── Models
│ │ └── MyValue.cs
│ │ ├── WebApi.csproj
│ │ ├── Program.cs
│ │ ├── Startup.cs
│ │ ├── .vscode
│ │ ├── tasks.json
│ │ └── launch.json
│ │ └── Controllers
│ │ └── ValuesController.cs
├── Lab 3
│ ├── GoogleDriveApp
│ │ ├── testfile.xml
│ │ ├── CreateGoogleFile.cs
│ │ ├── credentials.json
│ │ ├── GoogleDriveApiApp.csproj
│ │ └── .vscode
│ │ │ ├── launch.json
│ │ │ └── tasks.json
│ └── Pasi pentru dezvoltare google app.docx
└── Lab 2
│ └── WebApi
│ ├── appsettings.Development.json
│ ├── Models
│ └── Student.cs
│ ├── appsettings.json
│ ├── DATC_lab2.csproj
│ ├── Program.cs
│ ├── Startup.cs
│ ├── .vscode
│ ├── tasks.json
│ └── launch.json
│ └── Controllers
│ ├── StudentController.cs
│ └── Student2Controller.cs
├── index.html
└── RUS_ALEXANDRU
└── Lab2
└── WebApi
├── appsettings.Development.json
├── Models
└── Student.cs
├── appsettings.json
├── DATC_lab2.csproj
├── Program.cs
├── Controllers
├── ValuesController.cs
└── StudentController.cs
├── Startup.cs
└── .vscode
├── tasks.json
└── launch.json
/test.txt:
--------------------------------------------------------------------------------
1 | Hello, world!
2 |
3 | This is an edit!
--------------------------------------------------------------------------------
/Andricsak/Laborator/Laborator3/test.txt:
--------------------------------------------------------------------------------
1 | Some text
2 |
--------------------------------------------------------------------------------
/_Exemple/Lab 5/AzureFunction/host.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "2.0"
3 | }
--------------------------------------------------------------------------------
/_Exemple/Lab 6/AzureFunction/host.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "2.0"
3 | }
--------------------------------------------------------------------------------
/_Exemple/AzureFunc-WebApi/AzureFunction/host.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "2.0"
3 | }
--------------------------------------------------------------------------------
/Andricsak/Proiect/AnimalDanger/react-client/build/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 |
--------------------------------------------------------------------------------
/Andricsak/Proiect/AnimalDanger/react-client/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 |
--------------------------------------------------------------------------------
/_Exemple/Lab 3/GoogleDriveApp/testfile.xml:
--------------------------------------------------------------------------------
1 |
2 |