├── .gitignore ├── Links.txt ├── README.md ├── doc ├── Examples-MSSQL.txt ├── Examples-Oracle.txt ├── Examples-PostgreSQL.txt ├── Examples-XML-JSON.txt ├── GeneralNotes.txt ├── InterviewQuestions │ ├── DBMS.pdf │ └── SQLInterviewQuestions.pdf └── notes │ ├── ECMA-404_2nd_edition_december_2017.pdf │ └── NotesLinks.txt ├── homeworks ├── 001-chesstournament │ ├── chesstournament.PNG │ └── ddl-new-Yusuf-Lale.sql └── 02-healthcarecenter │ ├── ddl-new-Yusuf-Lale.sql │ └── healthcenter.PNG └── src ├── SampleApplications ├── AnimalHospital │ ├── Services │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── compiler.xml │ │ │ ├── encodings.xml │ │ │ ├── inspectionProfiles │ │ │ │ └── Project_Default.xml │ │ │ ├── jarRepositories.xml │ │ │ ├── jpa-buddy.xml │ │ │ ├── libraries │ │ │ │ ├── VeterinarianGetServiceApp_6_0_0.xml │ │ │ │ ├── VeterinarianPostServiceApp_6_0_0.xml │ │ │ │ ├── maven_wrapper.xml │ │ │ │ ├── maven_wrapper1.xml │ │ │ │ ├── schema.xml │ │ │ │ └── schema1.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── sqldialects.xml │ │ │ ├── uiDesigner.xml │ │ │ └── vcs.xml │ │ ├── AnimalGetService │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ └── service │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ └── animal │ │ │ │ │ │ ├── AnimalGetServiceApp.java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── AnimalController.java │ │ │ │ │ │ └── AnimalOwnersController.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── AnimalDTO.java │ │ │ │ │ │ ├── AnimalsDTO.java │ │ │ │ │ │ ├── AnimalsOwnerDetailsDTO.java │ │ │ │ │ │ └── AnimalsWithoutOwnerDTO.java │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── IAnimalMapper.java │ │ │ │ │ │ ├── IAnimalOwnerDetailsMapper.java │ │ │ │ │ │ └── IAnimalWithoutOwnerMapper.java │ │ │ │ │ │ └── service │ │ │ │ │ │ └── AnimalService.java │ │ │ │ └── resources │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ ├── application-test.properties │ │ │ │ │ ├── application.properties │ │ │ │ │ └── banner.txt │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── service │ │ │ │ └── animalhospital │ │ │ │ └── animal │ │ │ │ └── AnimalGetServiceAppTests.java │ │ ├── AnimalHospitalRepositoryLib │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── metemengen │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ └── data │ │ │ │ │ │ ├── BeanName.java │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ └── MapperConfig.java │ │ │ │ │ │ ├── dal │ │ │ │ │ │ ├── AnimalPostServiceHelper.java │ │ │ │ │ │ ├── AnimalServiceHelper.java │ │ │ │ │ │ ├── OwnerServiceHelper.java │ │ │ │ │ │ ├── VeterinarianAnimalServiceHelper.java │ │ │ │ │ │ └── VeterinarianServiceHelper.java │ │ │ │ │ │ ├── entity │ │ │ │ │ │ ├── jdbc │ │ │ │ │ │ │ ├── Veterinarian.java │ │ │ │ │ │ │ ├── VeterinarianAnimalSave.java │ │ │ │ │ │ │ ├── VeterinarianSave.java │ │ │ │ │ │ │ ├── VeterinarianWithFullName.java │ │ │ │ │ │ │ └── VeterinarianWithoutCitizenId.java │ │ │ │ │ │ └── orm │ │ │ │ │ │ │ ├── Animal.java │ │ │ │ │ │ │ ├── Owner.java │ │ │ │ │ │ │ ├── Veterinarian.java │ │ │ │ │ │ │ ├── dto │ │ │ │ │ │ │ ├── AnimalDTO.java │ │ │ │ │ │ │ ├── AnimalOwnerDetails.java │ │ │ │ │ │ │ ├── AnimalSaveDTO.java │ │ │ │ │ │ │ └── AnimalWithOwnerSaveDTO.java │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── IAnimalWithoutOwner.java │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── jdbc │ │ │ │ │ │ │ └── IVeterinarianMapper.java │ │ │ │ │ │ └── orm │ │ │ │ │ │ │ └── IAnimalDTOMapper.java │ │ │ │ │ │ └── repository │ │ │ │ │ │ ├── jdbc │ │ │ │ │ │ ├── IVeterinarianRepository.java │ │ │ │ │ │ └── VeterinarianRepository.java │ │ │ │ │ │ └── orm │ │ │ │ │ │ ├── IAnimalRepository.java │ │ │ │ │ │ └── IOwnerRepository.java │ │ │ │ └── resources │ │ │ │ │ ├── application-test.properties │ │ │ │ │ ├── application.properties │ │ │ │ │ ├── ddl.sql │ │ │ │ │ ├── owner_data.sql │ │ │ │ │ └── veterinarian_data.sql │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── metemengen │ │ │ │ └── animalhospital │ │ │ │ └── data │ │ │ │ ├── dal │ │ │ │ └── AnimalPostServiceHelperSaveTest.java │ │ │ │ └── repository │ │ │ │ └── jdbc │ │ │ │ ├── VeterinarianRepositoryFindByIdTest.java │ │ │ │ ├── VeterinarianRepositorySaveTest.java │ │ │ │ └── VeterinarianRepositorySaveVeterinarianAnimalTest.java │ │ ├── AnimalPostService │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ └── service │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ └── animal │ │ │ │ │ │ ├── AnimalPostServiceApp.java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── AnimalController.java │ │ │ │ │ │ └── service │ │ │ │ │ │ └── AnimalService.java │ │ │ │ └── resources │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ ├── application-test.properties │ │ │ │ │ ├── application.properties │ │ │ │ │ └── banner.txt │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── service │ │ │ │ └── animalhospital │ │ │ │ └── animal │ │ │ │ └── AnimalPostServiceAppTests.java │ │ ├── OwnerGetService │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ └── service │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ └── owner │ │ │ │ │ │ ├── OwnerGetServiceApp.java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── OwnerController.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── AnimalDTO.java │ │ │ │ │ │ ├── OwnerDTO.java │ │ │ │ │ │ └── OwnersDTO.java │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ └── IOwnerMapper.java │ │ │ │ │ │ └── service │ │ │ │ │ │ └── OwnerService.java │ │ │ │ └── resources │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ ├── application-test.properties │ │ │ │ │ ├── application.properties │ │ │ │ │ └── banner.txt │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── service │ │ │ │ └── animalhospital │ │ │ │ └── owner │ │ │ │ └── OwnerGetServiceAppTests.java │ │ ├── VeterinarianAnimalPostService │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ └── service │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ └── veterinariananimal │ │ │ │ │ │ ├── VeterinarianAnimalPostServiceApp.java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── VeterinarianAnimalController.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ └── VeterinarianAnimalSaveDTO.java │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ └── IVeterinarianAnimalMapper.java │ │ │ │ │ │ └── service │ │ │ │ │ │ └── VeterinarianAnimalService.java │ │ │ │ └── resources │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ ├── application-test.properties │ │ │ │ │ ├── application.properties │ │ │ │ │ └── banner.txt │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── service │ │ │ │ └── animalhospital │ │ │ │ └── veterinariananimal │ │ │ │ └── VeterinarianAnimalPostServiceAppTests.java │ │ ├── VeterinarianGetService │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ ├── src │ │ │ │ ├── main │ │ │ │ │ ├── java │ │ │ │ │ │ └── org │ │ │ │ │ │ │ └── csystem │ │ │ │ │ │ │ └── app │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ │ └── veterinarian │ │ │ │ │ │ │ ├── VeterinarianGetServiceApp.java │ │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ │ └── MapperConfig.java │ │ │ │ │ │ │ ├── controller │ │ │ │ │ │ │ └── VeterinarianController.java │ │ │ │ │ │ │ ├── dto │ │ │ │ │ │ │ ├── CountDTO.java │ │ │ │ │ │ │ ├── VeterinarianDTO.java │ │ │ │ │ │ │ ├── VeterinarianError.java │ │ │ │ │ │ │ ├── VeterinarianStatus.java │ │ │ │ │ │ │ ├── VeterinarianStatusDTO.java │ │ │ │ │ │ │ ├── VeterinarianStatusInfo.java │ │ │ │ │ │ │ ├── VeterinarianWithFullNameDTO.java │ │ │ │ │ │ │ ├── VeterinarianWithoutCitizenIdDTO.java │ │ │ │ │ │ │ ├── VeterinariansDTO.java │ │ │ │ │ │ │ ├── VeterinariansWithFullNameDTO.java │ │ │ │ │ │ │ └── VeterinariansWithoutCitizenIdDTO.java │ │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ │ ├── IVeterinarianMapper.java │ │ │ │ │ │ │ ├── IVeterinarianWithFullNameMapper.java │ │ │ │ │ │ │ └── IVeterinarianWithoutCitizenIdMapper.java │ │ │ │ │ │ │ └── service │ │ │ │ │ │ │ └── VeterinarianService.java │ │ │ │ │ └── resources │ │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ │ ├── application-test.properties │ │ │ │ │ │ ├── application.properties │ │ │ │ │ │ ├── banner.txt │ │ │ │ │ │ ├── data.sql │ │ │ │ │ │ └── schema.sql │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── app │ │ │ │ │ └── service │ │ │ │ │ └── animalhospital │ │ │ │ │ └── veterinarian │ │ │ │ │ └── VeterinarianGetServiceAppTests.java │ │ │ └── todo.txt │ │ ├── VeterinarianPostService │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ └── service │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ └── veterinarian │ │ │ │ │ │ ├── VeterinarianPostServiceApp.java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── VeterinarianController.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── VeterinarianError.java │ │ │ │ │ │ └── VeterinarianSaveDTO.java │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ └── IVeterinarianSaveMapper.java │ │ │ │ │ │ └── service │ │ │ │ │ │ └── VeterinarianService.java │ │ │ │ └── resources │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ ├── application-test.properties │ │ │ │ │ ├── application.properties │ │ │ │ │ └── banner.txt │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── service │ │ │ │ └── animalhospital │ │ │ │ └── veterinarian │ │ │ │ └── VeterinarianPostServiceAppTests.java │ │ ├── VeterinarianWebApplication │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── busrapolat │ │ │ │ │ │ └── app │ │ │ │ │ │ └── web │ │ │ │ │ │ └── veterinarian │ │ │ │ │ │ ├── ServletInitializer.java │ │ │ │ │ │ ├── VeterinarianWebApplication.java │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ └── RestTemplateConfig.java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── VeterinarianController.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ ├── VeterinarianModel.java │ │ │ │ │ │ ├── VeterinarianSaveModel.java │ │ │ │ │ │ └── VeterinariansModel.java │ │ │ │ │ │ └── service │ │ │ │ │ │ └── VeterinarianService.java │ │ │ │ └── resources │ │ │ │ │ ├── application.properties │ │ │ │ │ ├── banner.txt │ │ │ │ │ ├── static │ │ │ │ │ └── index.html │ │ │ │ │ └── templates │ │ │ │ │ ├── add.html │ │ │ │ │ ├── all.html │ │ │ │ │ └── result.html │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── busrapolat │ │ │ │ └── app │ │ │ │ └── web │ │ │ │ └── veterinarian │ │ │ │ └── VeterinarianWebApplicationTests.java │ │ └── pom.xml │ └── ServicesCommunicate │ │ ├── AnimalServiceApp │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── compiler.xml │ │ │ ├── encodings.xml │ │ │ ├── jarRepositories.xml │ │ │ ├── jpa-buddy.xml │ │ │ ├── misc.xml │ │ │ ├── uiDesigner.xml │ │ │ └── vcs.xml │ │ ├── AnimalGetService │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ └── service │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ └── animal │ │ │ │ │ │ ├── AnimalGetServiceApp.java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ ├── AnimalController.java │ │ │ │ │ │ └── AnimalOwnersController.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── AnimalDTO.java │ │ │ │ │ │ ├── AnimalExistsDTO.java │ │ │ │ │ │ ├── AnimalsDTO.java │ │ │ │ │ │ ├── AnimalsOwnerDetailsDTO.java │ │ │ │ │ │ └── AnimalsWithoutOwnerDTO.java │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── IAnimalMapper.java │ │ │ │ │ │ ├── IAnimalOwnerDetailsMapper.java │ │ │ │ │ │ └── IAnimalWithoutOwnerMapper.java │ │ │ │ │ │ └── service │ │ │ │ │ │ └── AnimalService.java │ │ │ │ └── resources │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ ├── application-test.properties │ │ │ │ │ ├── application.properties │ │ │ │ │ ├── banner.txt │ │ │ │ │ └── data.sql │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── service │ │ │ │ └── animalhospital │ │ │ │ └── animal │ │ │ │ └── AnimalGetServiceAppTests.java │ │ ├── AnimalHospitalRepositoryLib │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── atahanyengin │ │ │ │ │ └── animalhospital │ │ │ │ │ └── data │ │ │ │ │ ├── BeanName.java │ │ │ │ │ ├── dal │ │ │ │ │ ├── AnimalPostServiceHelper.java │ │ │ │ │ ├── AnimalServiceHelper.java │ │ │ │ │ └── OwnerServiceHelper.java │ │ │ │ │ ├── entity │ │ │ │ │ └── orm │ │ │ │ │ │ ├── Animal.java │ │ │ │ │ │ ├── Owner.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── AnimalDTO.java │ │ │ │ │ │ ├── AnimalOwnerDetails.java │ │ │ │ │ │ ├── AnimalSaveDTO.java │ │ │ │ │ │ └── AnimalWithOwnerSaveDTO.java │ │ │ │ │ │ └── view │ │ │ │ │ │ └── IAnimalWithoutOwner.java │ │ │ │ │ ├── mapper │ │ │ │ │ └── IAnimalDTOMapper.java │ │ │ │ │ └── repository │ │ │ │ │ └── orm │ │ │ │ │ ├── IAnimalRepository.java │ │ │ │ │ └── IOwnerRepository.java │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ ├── AnimalPostService │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ └── service │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ └── animal │ │ │ │ │ │ ├── AnimalPostServiceApp.java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── AnimalController.java │ │ │ │ │ │ └── service │ │ │ │ │ │ └── AnimalService.java │ │ │ │ └── resources │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ ├── application-test.properties │ │ │ │ │ ├── application.properties │ │ │ │ │ └── banner.txt │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── service │ │ │ │ └── animalhospital │ │ │ │ └── animal │ │ │ │ └── AnimalPostServiceAppTests.java │ │ ├── OwnerGetService │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ └── service │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ └── owner │ │ │ │ │ │ ├── OwnerGetServiceApp.java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── OwnerController.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── AnimalDTO.java │ │ │ │ │ │ ├── OwnerDTO.java │ │ │ │ │ │ └── OwnersDTO.java │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ └── IOwnerMapper.java │ │ │ │ │ │ └── service │ │ │ │ │ │ └── OwnerService.java │ │ │ │ └── resources │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ ├── application-test.properties │ │ │ │ │ ├── application.properties │ │ │ │ │ └── banner.txt │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── service │ │ │ │ └── animalhospital │ │ │ │ └── owner │ │ │ │ └── OwnerGetServiceAppTests.java │ │ ├── pom.xml │ │ └── target │ │ │ ├── AnimalServiceApp-1.0.0.jar │ │ │ ├── AnimalServiceApp-1.0.0.jar.original │ │ │ ├── maven-archiver │ │ │ └── pom.properties │ │ │ └── maven-status │ │ │ └── maven-compiler-plugin │ │ │ ├── compile │ │ │ └── default-compile │ │ │ │ └── inputFiles.lst │ │ │ └── testCompile │ │ │ └── default-testCompile │ │ │ └── inputFiles.lst │ │ ├── VeterinarianAnimalSchedulerApp │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── compiler.xml │ │ │ ├── encodings.xml │ │ │ ├── jarRepositories.xml │ │ │ ├── jpa-buddy.xml │ │ │ ├── misc.xml │ │ │ ├── uiDesigner.xml │ │ │ └── vcs.xml │ │ ├── VeterinarianAnimalScheduler │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ └── service │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ └── scheduler │ │ │ │ │ │ └── App.java │ │ │ │ └── resources │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ ├── application.properties │ │ │ │ │ └── banner.txt │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── AppTests.java │ │ └── pom.xml │ │ ├── VeterinarianAnimalServiceApp │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── VeterinarianAnimalServiceApp.iml │ │ │ ├── compiler.xml │ │ │ ├── encodings.xml │ │ │ ├── jarRepositories.xml │ │ │ ├── jpa-buddy.xml │ │ │ ├── misc.xml │ │ │ ├── uiDesigner.xml │ │ │ └── vcs.xml │ │ ├── VeterinarianAnimalPostService │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── app │ │ │ │ │ └── service │ │ │ │ │ └── animalhospital │ │ │ │ │ ├── VeterinarianAnimalPostServiceApp.java │ │ │ │ │ ├── controller │ │ │ │ │ └── VeterinarianAnimalController.java │ │ │ │ │ ├── dto │ │ │ │ │ ├── VeterinarianAnimalSaveDTO.java │ │ │ │ │ └── client │ │ │ │ │ │ └── ExistsDTO.java │ │ │ │ │ ├── mapper │ │ │ │ │ └── IVeterinarianAnimalMapper.java │ │ │ │ │ └── service │ │ │ │ │ └── VeterinarianAnimalService.java │ │ │ │ └── resources │ │ │ │ ├── application-dev.properties │ │ │ │ ├── application-test.properties │ │ │ │ ├── application.properties │ │ │ │ └── banner.txt │ │ ├── VeterinarianAnimalRepositoryLib │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── denizogut │ │ │ │ │ └── library │ │ │ │ │ └── animalhospital │ │ │ │ │ └── data │ │ │ │ │ ├── dal │ │ │ │ │ └── VeterinarianAnimalServiceHelper.java │ │ │ │ │ └── entity │ │ │ │ │ └── VeterinarianAnimal.java │ │ │ │ └── resources │ │ │ │ └── application.properties │ │ ├── VeterinarianAnimalScheduler │ │ │ ├── .gitignore │ │ │ ├── .mvn │ │ │ │ └── wrapper │ │ │ │ │ ├── maven-wrapper.jar │ │ │ │ │ └── maven-wrapper.properties │ │ │ ├── mvnw │ │ │ ├── mvnw.cmd │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ └── service │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ └── scheduler │ │ │ │ │ │ ├── VeterinarianAnimalSchedulerApp.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ └── VeterinarianAnimalDTO.java │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ └── IVeterinarianAnimalMapper.java │ │ │ │ │ │ └── runner │ │ │ │ │ │ └── SchedulerRunner.java │ │ │ │ └── resources │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ ├── application-test.properties │ │ │ │ │ ├── application.properties │ │ │ │ │ └── banner.txt │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── AppTests.java │ │ └── pom.xml │ │ └── VeterinarianServiceApp │ │ ├── .idea │ │ ├── .gitignore │ │ ├── VeterinarianServiceApp.iml │ │ ├── compiler.xml │ │ ├── encodings.xml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── jarRepositories.xml │ │ ├── jpa-buddy.xml │ │ ├── misc.xml │ │ ├── sqldialects.xml │ │ ├── uiDesigner.xml │ │ └── vcs.xml │ │ ├── VeterinarianGetService │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ ├── src │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── csystem │ │ │ │ │ │ └── app │ │ │ │ │ │ └── service │ │ │ │ │ │ └── animalhospital │ │ │ │ │ │ └── veterinarian │ │ │ │ │ │ ├── VeterinarianGetServiceApp.java │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ └── MapperConfig.java │ │ │ │ │ │ ├── controller │ │ │ │ │ │ └── VeterinarianController.java │ │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── CountDTO.java │ │ │ │ │ │ ├── VeterinarianDTO.java │ │ │ │ │ │ ├── VeterinarianError.java │ │ │ │ │ │ ├── VeterinarianExistsDTO.java │ │ │ │ │ │ ├── VeterinarianStatus.java │ │ │ │ │ │ ├── VeterinarianStatusDTO.java │ │ │ │ │ │ ├── VeterinarianStatusInfo.java │ │ │ │ │ │ ├── VeterinarianWithFullNameDTO.java │ │ │ │ │ │ ├── VeterinarianWithoutCitizenIdDTO.java │ │ │ │ │ │ ├── VeterinariansDTO.java │ │ │ │ │ │ ├── VeterinariansWithFullNameDTO.java │ │ │ │ │ │ └── VeterinariansWithoutCitizenIdDTO.java │ │ │ │ │ │ ├── mapper │ │ │ │ │ │ ├── IVeterinarianMapper.java │ │ │ │ │ │ ├── IVeterinarianWithFullNameMapper.java │ │ │ │ │ │ └── IVeterinarianWithoutCitizenIdMapper.java │ │ │ │ │ │ └── service │ │ │ │ │ │ └── VeterinarianService.java │ │ │ │ └── resources │ │ │ │ │ ├── application-dev.properties │ │ │ │ │ ├── application-test.properties │ │ │ │ │ ├── application.properties │ │ │ │ │ ├── banner.txt │ │ │ │ │ ├── data.sql │ │ │ │ │ └── schema.sql │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── csystem │ │ │ │ └── app │ │ │ │ └── service │ │ │ │ └── animalhospital │ │ │ │ └── veterinarian │ │ │ │ └── VeterinarianGetServiceAppTests.java │ │ └── todo.txt │ │ ├── VeterinarianPostService │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── csystem │ │ │ │ │ └── app │ │ │ │ │ └── service │ │ │ │ │ └── animalhospital │ │ │ │ │ └── veterinarian │ │ │ │ │ ├── VeterinarianPostServiceApp.java │ │ │ │ │ ├── controller │ │ │ │ │ └── VeterinarianController.java │ │ │ │ │ ├── dto │ │ │ │ │ ├── VeterinarianError.java │ │ │ │ │ └── VeterinarianSaveDTO.java │ │ │ │ │ ├── mapper │ │ │ │ │ └── IVeterinarianSaveMapper.java │ │ │ │ │ └── service │ │ │ │ │ └── VeterinarianService.java │ │ │ └── resources │ │ │ │ ├── application-dev.properties │ │ │ │ ├── application-test.properties │ │ │ │ ├── application.properties │ │ │ │ └── banner.txt │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── csystem │ │ │ └── app │ │ │ └── service │ │ │ └── animalhospital │ │ │ └── veterinarian │ │ │ └── VeterinarianPostServiceAppTests.java │ │ ├── VeterinarianRepositoryLib │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── metemengen │ │ │ │ └── animalhospital │ │ │ │ └── data │ │ │ │ ├── BeanName.java │ │ │ │ ├── configuration │ │ │ │ └── MapperConfig.java │ │ │ │ ├── dal │ │ │ │ └── VeterinarianServiceHelper.java │ │ │ │ ├── entity │ │ │ │ └── jdbc │ │ │ │ │ ├── Veterinarian.java │ │ │ │ │ ├── VeterinarianSave.java │ │ │ │ │ ├── VeterinarianWithFullName.java │ │ │ │ │ └── VeterinarianWithoutCitizenId.java │ │ │ │ ├── mapper │ │ │ │ └── jdbc │ │ │ │ │ └── IVeterinarianMapper.java │ │ │ │ └── repository │ │ │ │ └── jdbc │ │ │ │ ├── IVeterinarianRepository.java │ │ │ │ └── VeterinarianRepository.java │ │ │ └── resources │ │ │ └── application.properties │ │ ├── VeterinarianWebApplication │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── busrapolat │ │ │ │ │ └── app │ │ │ │ │ └── web │ │ │ │ │ └── veterinarian │ │ │ │ │ ├── ServletInitializer.java │ │ │ │ │ ├── VeterinarianWebApplication.java │ │ │ │ │ ├── configuration │ │ │ │ │ └── RestTemplateConfig.java │ │ │ │ │ ├── controller │ │ │ │ │ └── VeterinarianController.java │ │ │ │ │ ├── model │ │ │ │ │ ├── VeterinarianModel.java │ │ │ │ │ ├── VeterinarianSaveModel.java │ │ │ │ │ └── VeterinariansModel.java │ │ │ │ │ └── service │ │ │ │ │ └── VeterinarianService.java │ │ │ └── resources │ │ │ │ ├── application.properties │ │ │ │ ├── banner.txt │ │ │ │ ├── static │ │ │ │ └── index.html │ │ │ │ └── templates │ │ │ │ ├── add.html │ │ │ │ ├── all.html │ │ │ │ └── result.html │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── busrapolat │ │ │ └── app │ │ │ └── web │ │ │ └── veterinarian │ │ │ └── VeterinarianWebApplicationTests.java │ │ └── pom.xml └── SensorApplication │ ├── Libraries │ ├── AsyncUtilLib │ │ ├── .vs │ │ │ └── AsyncUtilLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── AsyncUtilLib.csproj │ │ ├── AsyncUtilLib.sln │ │ ├── TaskUtil.cs │ │ ├── ThreadUtil.cs │ │ ├── bin │ │ │ ├── Debug │ │ │ │ └── net5.0 │ │ │ │ │ ├── CSDAsync.deps.json │ │ │ │ │ ├── CSDAsync.dll │ │ │ │ │ ├── CSDAsync.pdb │ │ │ │ │ └── ref │ │ │ │ │ └── CSDAsync.dll │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSDAsync.deps.json │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ └── ref │ │ │ │ └── CSDAsync.dll │ │ └── obj │ │ │ ├── AsyncUtilLib.csproj.nuget.dgspec.json │ │ │ ├── AsyncUtilLib.csproj.nuget.g.props │ │ │ ├── AsyncUtilLib.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── AsyncUtilLib.AssemblyInfo.cs │ │ │ │ ├── AsyncUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── AsyncUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── AsyncUtilLib.assets.cache │ │ │ │ ├── AsyncUtilLib.csproj.AssemblyReference.cache │ │ │ │ ├── AsyncUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── AsyncUtilLib.csproj.FileListAbsolute.txt │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ └── ref │ │ │ │ └── CSDAsync.dll │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── AsyncUtilLib.AssemblyInfo.cs │ │ │ │ ├── AsyncUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── AsyncUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── AsyncUtilLib.assets.cache │ │ │ │ ├── AsyncUtilLib.csproj.AssemblyReference.cache │ │ │ │ ├── AsyncUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── AsyncUtilLib.csproj.FileListAbsolute.txt │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ └── ref │ │ │ │ └── CSDAsync.dll │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── DataBindingLib │ │ ├── .vs │ │ │ └── DataBindingLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── DataBindingLib.csproj │ │ ├── DataBindingLib.sln │ │ ├── ObservableObject.cs │ │ ├── bin │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.Databinding.deps.json │ │ │ │ ├── CSD.Util.Databinding.dll │ │ │ │ ├── CSD.Util.Databinding.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Databinding.dll │ │ └── obj │ │ │ ├── DataBindingLib.csproj.nuget.dgspec.json │ │ │ ├── DataBindingLib.csproj.nuget.g.props │ │ │ ├── DataBindingLib.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── DataBindingLib.AssemblyInfo.cs │ │ │ │ ├── DataBindingLib.AssemblyInfoInputs.cache │ │ │ │ ├── DataBindingLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── DataBindingLib.assets.cache │ │ │ │ └── DataBindingLib.csproj.AssemblyReference.cache │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.Util.Databinding.dll │ │ │ │ ├── CSD.Util.Databinding.pdb │ │ │ │ ├── DataBindingLib.AssemblyInfo.cs │ │ │ │ ├── DataBindingLib.AssemblyInfoInputs.cache │ │ │ │ ├── DataBindingLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── DataBindingLib.assets.cache │ │ │ │ ├── DataBindingLib.csproj.AssemblyReference.cache │ │ │ │ ├── DataBindingLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── DataBindingLib.csproj.FileListAbsolute.txt │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Databinding.dll │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── DataUtilLib │ │ ├── .vs │ │ │ └── DataUtilLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ ├── .suo │ │ │ │ └── TestStore │ │ │ │ └── 0 │ │ │ │ ├── 000.testlog │ │ │ │ └── testlog.manifest │ │ ├── DataUtilLib.csproj │ │ ├── DataUtilLib.sln │ │ ├── DatabaseUtil.cs │ │ ├── Repository │ │ │ ├── CrudRepository.cs │ │ │ ├── CrudRepositoryEx.cs │ │ │ ├── ICrudRepository.cs │ │ │ ├── IEntity.cs │ │ │ └── RepositoryException.cs │ │ ├── Service │ │ │ └── DataServiceException.cs │ │ ├── bin │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.deps.json │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Data.dll │ │ └── obj │ │ │ ├── DataUtilLib.csproj.nuget.dgspec.json │ │ │ ├── DataUtilLib.csproj.nuget.g.props │ │ │ ├── DataUtilLib.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── DataUtilLib.AssemblyInfo.cs │ │ │ │ ├── DataUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── DataUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── DataUtilLib.assets.cache │ │ │ │ ├── DataUtilLib.csproj.AssemblyReference.cache │ │ │ │ ├── DataUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── DataUtilLib.csproj.FileListAbsolute.txt │ │ │ │ └── ref │ │ │ │ └── CSD.Data.dll │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── DataUtilLib.AssemblyInfo.cs │ │ │ │ ├── DataUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── DataUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── DataUtilLib.assets.cache │ │ │ │ ├── DataUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── DataUtilLib.csproj.FileListAbsolute.txt │ │ │ │ └── ref │ │ │ │ └── CSD.Data.dll │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── ExceptionUtilLib │ │ ├── .vs │ │ │ └── ExceptionUtilLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── ExceptionUtil.cs │ │ ├── ExceptionUtilLib.csproj │ │ ├── ExceptionUtilLib.sln │ │ ├── bin │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.Error.deps.json │ │ │ │ ├── CSD.Util.Error.dll │ │ │ │ ├── CSD.Util.Error.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Error.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── ExceptionUtilLib.AssemblyInfo.cs │ │ │ │ ├── ExceptionUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── ExceptionUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── ExceptionUtilLib.assets.cache │ │ │ │ └── ExceptionUtilLib.csproj.AssemblyReference.cache │ │ │ ├── ExceptionUtilLib.csproj.nuget.dgspec.json │ │ │ ├── ExceptionUtilLib.csproj.nuget.g.props │ │ │ ├── ExceptionUtilLib.csproj.nuget.g.targets │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.Util.Error.dll │ │ │ │ ├── CSD.Util.Error.pdb │ │ │ │ ├── ExceptionUtilLib.AssemblyInfo.cs │ │ │ │ ├── ExceptionUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── ExceptionUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── ExceptionUtilLib.assets.cache │ │ │ │ ├── ExceptionUtilLib.csproj.AssemblyReference.cache │ │ │ │ ├── ExceptionUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── ExceptionUtilLib.csproj.FileListAbsolute.txt │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Error.dll │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── HttpClientExtensionLib │ │ ├── .vs │ │ │ └── HttpClientExtensionLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── HttpClientExtensionLib.sln │ │ └── HttpClientExtensionLib │ │ │ ├── Extensions │ │ │ └── Net │ │ │ │ └── Http │ │ │ │ └── HttpClientExtensions.cs │ │ │ ├── HttpClientExtensionLib.csproj │ │ │ ├── bin │ │ │ ├── Debug │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ ├── CSD.Extensions.Net.Http.deps.json │ │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ │ └── CSD.Extensions.Net.Http.pdb │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Extensions.Net.Http.deps.json │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ ├── CSD.Extensions.Net.Http.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Extensions.Net.Http.dll │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ ├── CSD.Extensions.Net.Http.pdb │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfo.cs │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfoInputs.cache │ │ │ │ ├── HttpClientExtensionLib.assets.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.FileListAbsolute.txt │ │ │ │ └── HttpClientExtensionLib.csprojAssemblyReference.cache │ │ │ ├── HttpClientExtensionLib.csproj.nuget.dgspec.json │ │ │ ├── HttpClientExtensionLib.csproj.nuget.g.props │ │ │ ├── HttpClientExtensionLib.csproj.nuget.g.targets │ │ │ ├── Release │ │ │ ├── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ ├── CSD.Extensions.Net.Http.pdb │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfo.cs │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfoInputs.cache │ │ │ │ ├── HttpClientExtensionLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── HttpClientExtensionLib.assets.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.AssemblyReference.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.FileListAbsolute.txt │ │ │ │ └── ref │ │ │ │ │ └── CSD.Extensions.Net.Http.dll │ │ │ └── netcoreapp3.1 │ │ │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ │ │ ├── CSD.Extensions.Net.Http.dll │ │ │ │ ├── CSD.Extensions.Net.Http.pdb │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfo.cs │ │ │ │ ├── HttpClientExtensionLib.AssemblyInfoInputs.cache │ │ │ │ ├── HttpClientExtensionLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── HttpClientExtensionLib.assets.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.AssemblyReference.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── HttpClientExtensionLib.csproj.FileListAbsolute.txt │ │ │ │ └── HttpClientExtensionLib.csprojAssemblyReference.cache │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── MapperUtilLib │ │ ├── .vs │ │ │ └── MapperUtilLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── AutoMapper │ │ │ └── Mapper.cs │ │ ├── IMapper.cs │ │ ├── MapperUtilLib.csproj │ │ ├── MapperUtilLib.sln │ │ ├── Mapster │ │ │ └── Mapper.cs │ │ ├── bin │ │ │ └── Release │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.Mappers.deps.json │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Mappers.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── MapperUtilLib.AssemblyInfo.cs │ │ │ │ ├── MapperUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── MapperUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── MapperUtilLib.assets.cache │ │ │ │ └── MapperUtilLib.csproj.AssemblyReference.cache │ │ │ ├── MapperUtilLib.csproj.nuget.dgspec.json │ │ │ ├── MapperUtilLib.csproj.nuget.g.props │ │ │ ├── MapperUtilLib.csproj.nuget.g.targets │ │ │ ├── Release │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── MapperUtilLib.AssemblyInfo.cs │ │ │ │ ├── MapperUtilLib.AssemblyInfoInputs.cache │ │ │ │ ├── MapperUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── MapperUtilLib.assets.cache │ │ │ │ ├── MapperUtilLib.csproj.AssemblyReference.cache │ │ │ │ ├── MapperUtilLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── MapperUtilLib.csproj.FileListAbsolute.txt │ │ │ │ └── ref │ │ │ │ └── CSD.Util.Mappers.dll │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── TaskUtilLib │ │ ├── .vs │ │ └── TaskUtilLib │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ └── v16 │ │ │ └── .suo │ │ ├── TPL │ │ └── TaskUtil.cs │ │ ├── TaskUtilLib.csproj │ │ ├── TaskUtilLib.sln │ │ ├── bin │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── CSD.Util.TPL.deps.json │ │ │ │ ├── CSD.Util.TPL.dll │ │ │ │ ├── CSD.Util.TPL.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.Util.TPL.dll │ │ └── Release │ │ │ └── net5.0 │ │ │ ├── CSD.Util.TPL.deps.json │ │ │ ├── CSD.Util.TPL.dll │ │ │ ├── CSD.Util.TPL.pdb │ │ │ └── ref │ │ │ └── CSD.Util.TPL.dll │ │ └── obj │ │ ├── Debug │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CSD.Util.TPL.dll │ │ │ ├── CSD.Util.TPL.pdb │ │ │ ├── TaskUtilLib.AssemblyInfo.cs │ │ │ ├── TaskUtilLib.AssemblyInfoInputs.cache │ │ │ ├── TaskUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── TaskUtilLib.assets.cache │ │ │ ├── TaskUtilLib.csproj.AssemblyReference.cache │ │ │ ├── TaskUtilLib.csproj.CoreCompileInputs.cache │ │ │ ├── TaskUtilLib.csproj.FileListAbsolute.txt │ │ │ └── ref │ │ │ └── CSD.Util.TPL.dll │ │ ├── Release │ │ └── net5.0 │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ ├── CSD.Util.TPL.dll │ │ │ ├── CSD.Util.TPL.pdb │ │ │ ├── TaskUtilLib.AssemblyInfo.cs │ │ │ ├── TaskUtilLib.AssemblyInfoInputs.cache │ │ │ ├── TaskUtilLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── TaskUtilLib.assets.cache │ │ │ ├── TaskUtilLib.csproj.AssemblyReference.cache │ │ │ ├── TaskUtilLib.csproj.CoreCompileInputs.cache │ │ │ ├── TaskUtilLib.csproj.FileListAbsolute.txt │ │ │ └── ref │ │ │ └── CSD.Util.TPL.dll │ │ ├── TaskUtilLib.csproj.nuget.dgspec.json │ │ ├── TaskUtilLib.csproj.nuget.g.props │ │ ├── TaskUtilLib.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache │ └── SensorApp │ ├── 001-SensorApp │ ├── SensorApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── SensorApp.csproj │ │ ├── SensorApp.csproj.user │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0-windows │ │ │ │ ├── AutoMapper.dll │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── Humanizer.dll │ │ │ │ ├── Mapster.Core.dll │ │ │ │ ├── Mapster.dll │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── SensorApp.deps.json │ │ │ │ ├── SensorApp.dll │ │ │ │ ├── SensorApp.exe │ │ │ │ ├── SensorApp.pdb │ │ │ │ ├── SensorApp.runtimeconfig.json │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ └── runtimes │ │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ ├── win-arm │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── netcoreapp3.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Runtime.Caching.dll │ │ └── obj │ │ │ ├── Debug │ │ │ ├── net5.0-windows │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── MainWindow.g.i.cs │ │ │ │ ├── SensorApp.AssemblyInfo.cs │ │ │ │ ├── SensorApp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp.assets.cache │ │ │ │ ├── SensorApp.csproj.AssemblyReference.cache │ │ │ │ ├── SensorApp.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorApp.designer.deps.json │ │ │ │ ├── SensorApp.designer.runtimeconfig.json │ │ │ │ ├── SensorApp_MarkupCompile.i.cache │ │ │ │ ├── SensorApp_MarkupCompile.i.lref │ │ │ │ └── apphost.exe │ │ │ └── net6.0-windows │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── App.g.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── MainWindow.baml │ │ │ │ ├── MainWindow.g.cs │ │ │ │ ├── MainWindow.g.i.cs │ │ │ │ ├── SensorApp.AssemblyInfo.cs │ │ │ │ ├── SensorApp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp.assets.cache │ │ │ │ ├── SensorApp.csproj.AssemblyReference.cache │ │ │ │ ├── SensorApp.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── SensorApp.csproj.CopyComplete │ │ │ │ ├── SensorApp.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorApp.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorApp.designer.deps.json │ │ │ │ ├── SensorApp.designer.runtimeconfig.json │ │ │ │ ├── SensorApp.dll │ │ │ │ ├── SensorApp.g.resources │ │ │ │ ├── SensorApp.genruntimeconfig.cache │ │ │ │ ├── SensorApp.pdb │ │ │ │ ├── SensorApp_MarkupCompile.cache │ │ │ │ ├── SensorApp_MarkupCompile.i.cache │ │ │ │ ├── SensorApp_MarkupCompile.i.lref │ │ │ │ ├── SensorApp_MarkupCompile.lref │ │ │ │ ├── SensorApp_yti2cvrb_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_yti2cvrb_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_yti2cvrb_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_yti2cvrb_wpftmp.assets.cache │ │ │ │ ├── SensorApp_yti2cvrb_wpftmp.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── apphost.exe │ │ │ │ ├── ref │ │ │ │ └── SensorApp.dll │ │ │ │ └── refint │ │ │ │ └── SensorApp.dll │ │ │ ├── SensorApp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp.csproj.nuget.g.props │ │ │ ├── SensorApp.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppDAL │ │ ├── SensorAppDAL.csproj │ │ ├── SensorAppDataHelper.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppDAL.deps.json │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppDAL.runtimeconfig.dev.json │ │ │ │ ├── SensorAppDAL.runtimeconfig.json │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ └── SensorAppRepositoryLib.pdb │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppDAL.AssemblyInfo.cs │ │ │ │ ├── SensorAppDAL.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppDAL.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppDAL.assets.cache │ │ │ │ ├── SensorAppDAL.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppDAL.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── SensorAppDAL.csproj.CopyComplete │ │ │ │ ├── SensorAppDAL.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppDAL.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.genruntimeconfig.cache │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── ref │ │ │ │ └── SensorAppDAL.dll │ │ │ │ └── refint │ │ │ │ └── SensorAppDAL.dll │ │ │ ├── SensorAppDAL.csproj.nuget.dgspec.json │ │ │ ├── SensorAppDAL.csproj.nuget.g.props │ │ │ ├── SensorAppDAL.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppRepositoryLib │ │ ├── .vs │ │ │ └── SensorAppRepositoryLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── v16 │ │ │ │ └── .suo │ │ │ │ └── v17 │ │ │ │ ├── .futdcache.v1 │ │ │ │ └── .suo │ │ ├── Data │ │ │ ├── Port.cs │ │ │ ├── Repository │ │ │ │ ├── IPortRepository.cs │ │ │ │ ├── ISensorRepository.cs │ │ │ │ └── SensorRepository.cs │ │ │ ├── Sensor.cs │ │ │ └── SensorsDBContext.cs │ │ ├── SensorAppRepositoryLib.csproj │ │ ├── SensorAppRepositoryLib.sln │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppRepositoryLib.deps.json │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ ├── SensorAppRepositoryLib.runtimeconfig.dev.json │ │ │ │ └── SensorAppRepositoryLib.runtimeconfig.json │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppRepositoryLib.AssemblyInfo.cs │ │ │ │ ├── SensorAppRepositoryLib.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppRepositoryLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppRepositoryLib.assets.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── SensorAppRepositoryLib.csproj.CopyComplete │ │ │ │ ├── SensorAppRepositoryLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.genruntimeconfig.cache │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ ├── ref │ │ │ │ └── SensorAppRepositoryLib.dll │ │ │ │ └── refint │ │ │ │ └── SensorAppRepositoryLib.dll │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.dgspec.json │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.g.props │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppServiceLib │ │ ├── Data │ │ │ ├── DTO │ │ │ │ ├── SensorInfoDTO.cs │ │ │ │ └── SensorSaveDTO.cs │ │ │ └── Service │ │ │ │ └── SensorAppService.cs │ │ ├── Global.cs │ │ ├── SensorAppServiceLib.csproj │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSD.SensorAppService.deps.json │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── CSD.SensorAppService.runtimeconfig.dev.json │ │ │ │ ├── CSD.SensorAppService.runtimeconfig.json │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ └── SensorAppRepositoryLib.pdb │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── SensorAppServiceLib.AssemblyInfo.cs │ │ │ │ ├── SensorAppServiceLib.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppServiceLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppServiceLib.assets.cache │ │ │ │ ├── SensorAppServiceLib.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppServiceLib.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── SensorAppServiceLib.csproj.CopyComplete │ │ │ │ ├── SensorAppServiceLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppServiceLib.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppServiceLib.genruntimeconfig.cache │ │ │ │ ├── ref │ │ │ │ └── CSD.SensorAppService.dll │ │ │ │ └── refint │ │ │ │ └── CSD.SensorAppService.dll │ │ │ ├── SensorAppServiceLib.csproj.nuget.dgspec.json │ │ │ ├── SensorAppServiceLib.csproj.nuget.g.props │ │ │ ├── SensorAppServiceLib.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── ddl.sql │ ├── 002-SensorAppHttpClient │ ├── SensorApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── SensorApp.csproj │ │ ├── SensorApp.csproj.user │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0-windows │ │ │ │ ├── AutoMapper.dll │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── Humanizer.dll │ │ │ │ ├── Mapster.Core.dll │ │ │ │ ├── Mapster.dll │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.Extensions.Http.dll │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── SensorApp.deps.json │ │ │ │ ├── SensorApp.dll │ │ │ │ ├── SensorApp.exe │ │ │ │ ├── SensorApp.pdb │ │ │ │ ├── SensorApp.runtimeconfig.dev.json │ │ │ │ ├── SensorApp.runtimeconfig.json │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ ├── System.Net.Http.Extensions.dll │ │ │ │ ├── System.Net.Http.Primitives.dll │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ ├── ref │ │ │ │ └── SensorApp.dll │ │ │ │ └── runtimes │ │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ ├── win-arm │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── netcoreapp3.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Runtime.Caching.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0-windows │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── App.g.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── MainWindow.baml │ │ │ │ ├── MainWindow.g.cs │ │ │ │ ├── MainWindow.g.i.cs │ │ │ │ ├── SensorApp.AssemblyInfo.cs │ │ │ │ ├── SensorApp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp.assets.cache │ │ │ │ ├── SensorApp.csproj.AssemblyReference.cache │ │ │ │ ├── SensorApp.csproj.CopyComplete │ │ │ │ ├── SensorApp.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorApp.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorApp.designer.deps.json │ │ │ │ ├── SensorApp.designer.runtimeconfig.json │ │ │ │ ├── SensorApp.dll │ │ │ │ ├── SensorApp.g.resources │ │ │ │ ├── SensorApp.genruntimeconfig.cache │ │ │ │ ├── SensorApp.pdb │ │ │ │ ├── SensorApp_MarkupCompile.cache │ │ │ │ ├── SensorApp_MarkupCompile.i.cache │ │ │ │ ├── SensorApp_MarkupCompile.lref │ │ │ │ ├── apphost.exe │ │ │ │ └── ref │ │ │ │ └── SensorApp.dll │ │ │ ├── SensorApp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp.csproj.nuget.g.props │ │ │ ├── SensorApp.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppDAL │ │ ├── SensorAppDAL.csproj │ │ ├── SensorAppDataHelper.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppDAL.deps.json │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppDAL.runtimeconfig.dev.json │ │ │ │ ├── SensorAppDAL.runtimeconfig.json │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ └── ref │ │ │ │ └── SensorAppDAL.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppDAL.AssemblyInfo.cs │ │ │ │ ├── SensorAppDAL.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppDAL.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppDAL.assets.cache │ │ │ │ ├── SensorAppDAL.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppDAL.csproj.CopyComplete │ │ │ │ ├── SensorAppDAL.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppDAL.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.genruntimeconfig.cache │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ └── ref │ │ │ │ └── SensorAppDAL.dll │ │ │ ├── SensorAppDAL.csproj.nuget.dgspec.json │ │ │ ├── SensorAppDAL.csproj.nuget.g.props │ │ │ ├── SensorAppDAL.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppRepositoryLib │ │ ├── .vs │ │ │ ├── ProjectEvaluation │ │ │ │ ├── sensorapprepositorylib.metadata.v6.1 │ │ │ │ └── sensorapprepositorylib.projects.v6.1 │ │ │ └── SensorAppRepositoryLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── FileContentIndex │ │ │ │ ├── c6dbad95-e3f8-4882-ad13-0103f778a353.vsidx │ │ │ │ └── read.lock │ │ │ │ ├── v16 │ │ │ │ └── .suo │ │ │ │ └── v17 │ │ │ │ ├── .futdcache.v2 │ │ │ │ └── .suo │ │ ├── Data │ │ │ ├── Port.cs │ │ │ ├── Repository │ │ │ │ ├── IPortRepository.cs │ │ │ │ ├── ISensorRepository.cs │ │ │ │ └── SensorRepository.cs │ │ │ ├── Sensor.cs │ │ │ ├── SensorsDBContext.cs │ │ │ └── SensorsInfo.cs │ │ ├── SensorAppRepositoryLib.csproj │ │ ├── SensorAppRepositoryLib.sln │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppRepositoryLib.deps.json │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ ├── SensorAppRepositoryLib.runtimeconfig.dev.json │ │ │ │ ├── SensorAppRepositoryLib.runtimeconfig.json │ │ │ │ └── ref │ │ │ │ └── SensorAppRepositoryLib.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppRepositoryLib.AssemblyInfo.cs │ │ │ │ ├── SensorAppRepositoryLib.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppRepositoryLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppRepositoryLib.assets.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.CopyComplete │ │ │ │ ├── SensorAppRepositoryLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.genruntimeconfig.cache │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ └── ref │ │ │ │ └── SensorAppRepositoryLib.dll │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.dgspec.json │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.g.props │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppServiceLib │ │ ├── Data │ │ │ ├── DTO │ │ │ │ ├── SensorInfoDTO.cs │ │ │ │ └── SensorSaveDTO.cs │ │ │ └── Service │ │ │ │ └── SensorAppService.cs │ │ ├── Global.cs │ │ ├── SensorAppServiceLib.csproj │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSD.SensorAppService.deps.json │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── CSD.SensorAppService.runtimeconfig.dev.json │ │ │ │ ├── CSD.SensorAppService.runtimeconfig.json │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.SensorAppService.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── SensorAppServiceLib.AssemblyInfo.cs │ │ │ │ ├── SensorAppServiceLib.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppServiceLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppServiceLib.assets.cache │ │ │ │ ├── SensorAppServiceLib.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppServiceLib.csproj.CopyComplete │ │ │ │ ├── SensorAppServiceLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppServiceLib.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppServiceLib.genruntimeconfig.cache │ │ │ │ └── ref │ │ │ │ └── CSD.SensorAppService.dll │ │ │ ├── SensorAppServiceLib.csproj.nuget.dgspec.json │ │ │ ├── SensorAppServiceLib.csproj.nuget.g.props │ │ │ ├── SensorAppServiceLib.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── ddl.sql │ ├── 003-SensorAppAutoCrud │ ├── SensorApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── SensorApp.csproj │ │ ├── SensorApp.csproj.user │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0-windows │ │ │ │ ├── AutoMapper.dll │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── Humanizer.dll │ │ │ │ ├── Mapster.Core.dll │ │ │ │ ├── Mapster.dll │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── SensorApp.deps.json │ │ │ │ ├── SensorApp.dll │ │ │ │ ├── SensorApp.exe │ │ │ │ ├── SensorApp.pdb │ │ │ │ ├── SensorApp.runtimeconfig.dev.json │ │ │ │ ├── SensorApp.runtimeconfig.json │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ ├── ref │ │ │ │ └── SensorApp.dll │ │ │ │ └── runtimes │ │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ ├── win-arm │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── netcoreapp3.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Runtime.Caching.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0-windows │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── App.g.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── MainWindow.baml │ │ │ │ ├── MainWindow.g.cs │ │ │ │ ├── MainWindow.g.i.cs │ │ │ │ ├── SensorApp.AssemblyInfo.cs │ │ │ │ ├── SensorApp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp.assets.cache │ │ │ │ ├── SensorApp.csproj.AssemblyReference.cache │ │ │ │ ├── SensorApp.csproj.CopyComplete │ │ │ │ ├── SensorApp.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorApp.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorApp.designer.deps.json │ │ │ │ ├── SensorApp.designer.runtimeconfig.json │ │ │ │ ├── SensorApp.dll │ │ │ │ ├── SensorApp.g.resources │ │ │ │ ├── SensorApp.genruntimeconfig.cache │ │ │ │ ├── SensorApp.pdb │ │ │ │ ├── SensorApp_MarkupCompile.cache │ │ │ │ ├── SensorApp_MarkupCompile.i.cache │ │ │ │ ├── SensorApp_MarkupCompile.i.lref │ │ │ │ ├── SensorApp_MarkupCompile.lref │ │ │ │ ├── apphost.exe │ │ │ │ └── ref │ │ │ │ └── SensorApp.dll │ │ │ ├── SensorApp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp.csproj.nuget.g.props │ │ │ ├── SensorApp.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppDAL │ │ ├── SensorAppDAL.csproj │ │ ├── SensorAppDataHelper.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppDAL.deps.json │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppDAL.runtimeconfig.dev.json │ │ │ │ ├── SensorAppDAL.runtimeconfig.json │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ └── ref │ │ │ │ └── SensorAppDAL.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppDAL.AssemblyInfo.cs │ │ │ │ ├── SensorAppDAL.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppDAL.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppDAL.assets.cache │ │ │ │ ├── SensorAppDAL.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppDAL.csproj.CopyComplete │ │ │ │ ├── SensorAppDAL.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppDAL.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.genruntimeconfig.cache │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ └── ref │ │ │ │ └── SensorAppDAL.dll │ │ │ ├── SensorAppDAL.csproj.nuget.dgspec.json │ │ │ ├── SensorAppDAL.csproj.nuget.g.props │ │ │ ├── SensorAppDAL.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppRepositoryLib │ │ ├── .vs │ │ │ └── SensorAppRepositoryLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── Data │ │ │ ├── Port.cs │ │ │ ├── Repository │ │ │ │ ├── IPortRepository.cs │ │ │ │ ├── ISensorRepository.cs │ │ │ │ └── SensorRepository.cs │ │ │ ├── Sensor.cs │ │ │ ├── Sensor.part.cs │ │ │ └── SensorsDBContext.cs │ │ ├── SensorAppRepositoryLib.csproj │ │ ├── SensorAppRepositoryLib.sln │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppRepositoryLib.deps.json │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ ├── SensorAppRepositoryLib.runtimeconfig.dev.json │ │ │ │ ├── SensorAppRepositoryLib.runtimeconfig.json │ │ │ │ └── ref │ │ │ │ └── SensorAppRepositoryLib.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppRepositoryLib.AssemblyInfo.cs │ │ │ │ ├── SensorAppRepositoryLib.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppRepositoryLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppRepositoryLib.assets.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.CopyComplete │ │ │ │ ├── SensorAppRepositoryLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.genruntimeconfig.cache │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ └── ref │ │ │ │ └── SensorAppRepositoryLib.dll │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.dgspec.json │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.g.props │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppServiceLib │ │ ├── Data │ │ │ ├── DTO │ │ │ │ ├── SensorInfoDTO.cs │ │ │ │ └── SensorSaveDTO.cs │ │ │ └── Service │ │ │ │ └── SensorAppService.cs │ │ ├── Global.cs │ │ ├── SensorAppServiceLib.csproj │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSD.SensorAppService.deps.json │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── CSD.SensorAppService.runtimeconfig.dev.json │ │ │ │ ├── CSD.SensorAppService.runtimeconfig.json │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.SensorAppService.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── SensorAppServiceLib.AssemblyInfo.cs │ │ │ │ ├── SensorAppServiceLib.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppServiceLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppServiceLib.assets.cache │ │ │ │ ├── SensorAppServiceLib.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppServiceLib.csproj.CopyComplete │ │ │ │ ├── SensorAppServiceLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppServiceLib.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppServiceLib.genruntimeconfig.cache │ │ │ │ └── ref │ │ │ │ └── CSD.SensorAppService.dll │ │ │ ├── SensorAppServiceLib.csproj.nuget.dgspec.json │ │ │ ├── SensorAppServiceLib.csproj.nuget.g.props │ │ │ ├── SensorAppServiceLib.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── ddl.sql │ ├── 004-SensorAppLazyLoading │ ├── SensorApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── SensorApp.csproj │ │ ├── SensorApp.csproj.user │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0-windows │ │ │ │ ├── AutoMapper.dll │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── Castle.Core.dll │ │ │ │ ├── Humanizer.dll │ │ │ │ ├── Mapster.Core.dll │ │ │ │ ├── Mapster.dll │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Proxies.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── SensorApp.deps.json │ │ │ │ ├── SensorApp.dll │ │ │ │ ├── SensorApp.exe │ │ │ │ ├── SensorApp.pdb │ │ │ │ ├── SensorApp.runtimeconfig.dev.json │ │ │ │ ├── SensorApp.runtimeconfig.json │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ ├── ref │ │ │ │ └── SensorApp.dll │ │ │ │ └── runtimes │ │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ ├── win-arm │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── netcoreapp3.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Runtime.Caching.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0-windows │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── App.g.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── MainWindow.baml │ │ │ │ ├── MainWindow.g.cs │ │ │ │ ├── MainWindow.g.i.cs │ │ │ │ ├── SensorApp.AssemblyInfo.cs │ │ │ │ ├── SensorApp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp.assets.cache │ │ │ │ ├── SensorApp.csproj.AssemblyReference.cache │ │ │ │ ├── SensorApp.csproj.CopyComplete │ │ │ │ ├── SensorApp.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorApp.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorApp.designer.deps.json │ │ │ │ ├── SensorApp.designer.runtimeconfig.json │ │ │ │ ├── SensorApp.dll │ │ │ │ ├── SensorApp.g.resources │ │ │ │ ├── SensorApp.genruntimeconfig.cache │ │ │ │ ├── SensorApp.pdb │ │ │ │ ├── SensorApp_MarkupCompile.cache │ │ │ │ ├── SensorApp_MarkupCompile.i.cache │ │ │ │ ├── SensorApp_MarkupCompile.i.lref │ │ │ │ ├── SensorApp_MarkupCompile.lref │ │ │ │ ├── apphost.exe │ │ │ │ └── ref │ │ │ │ └── SensorApp.dll │ │ │ ├── SensorApp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp.csproj.nuget.g.props │ │ │ ├── SensorApp.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppDAL │ │ ├── SensorAppDAL.csproj │ │ ├── SensorAppDataHelper.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppDAL.deps.json │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppDAL.runtimeconfig.dev.json │ │ │ │ ├── SensorAppDAL.runtimeconfig.json │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ └── ref │ │ │ │ └── SensorAppDAL.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppDAL.AssemblyInfo.cs │ │ │ │ ├── SensorAppDAL.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppDAL.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppDAL.assets.cache │ │ │ │ ├── SensorAppDAL.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppDAL.csproj.CopyComplete │ │ │ │ ├── SensorAppDAL.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppDAL.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.genruntimeconfig.cache │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ └── ref │ │ │ │ └── SensorAppDAL.dll │ │ │ ├── SensorAppDAL.csproj.nuget.dgspec.json │ │ │ ├── SensorAppDAL.csproj.nuget.g.props │ │ │ ├── SensorAppDAL.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppRepositoryLib │ │ ├── .vs │ │ │ └── SensorAppRepositoryLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── Data │ │ │ ├── Port.cs │ │ │ ├── Repository │ │ │ │ ├── IPortRepository.cs │ │ │ │ ├── ISensorRepository.cs │ │ │ │ └── SensorRepository.cs │ │ │ ├── Sensor.cs │ │ │ └── SensorsDBContext.cs │ │ ├── SensorAppRepositoryLib.csproj │ │ ├── SensorAppRepositoryLib.sln │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppRepositoryLib.deps.json │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ ├── SensorAppRepositoryLib.runtimeconfig.dev.json │ │ │ │ ├── SensorAppRepositoryLib.runtimeconfig.json │ │ │ │ └── ref │ │ │ │ └── SensorAppRepositoryLib.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppRepositoryLib.AssemblyInfo.cs │ │ │ │ ├── SensorAppRepositoryLib.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppRepositoryLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppRepositoryLib.assets.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.CopyComplete │ │ │ │ ├── SensorAppRepositoryLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.genruntimeconfig.cache │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ └── ref │ │ │ │ └── SensorAppRepositoryLib.dll │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.dgspec.json │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.g.props │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppServiceLib │ │ ├── Data │ │ │ ├── DTO │ │ │ │ ├── SensorInfoDTO.cs │ │ │ │ └── SensorSaveDTO.cs │ │ │ └── Service │ │ │ │ └── SensorAppService.cs │ │ ├── Global.cs │ │ ├── SensorAppServiceLib.csproj │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSD.SensorAppService.deps.json │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── CSD.SensorAppService.runtimeconfig.dev.json │ │ │ │ ├── CSD.SensorAppService.runtimeconfig.json │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ └── ref │ │ │ │ └── CSD.SensorAppService.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── SensorAppServiceLib.AssemblyInfo.cs │ │ │ │ ├── SensorAppServiceLib.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppServiceLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppServiceLib.assets.cache │ │ │ │ ├── SensorAppServiceLib.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppServiceLib.csproj.CopyComplete │ │ │ │ ├── SensorAppServiceLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppServiceLib.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppServiceLib.genruntimeconfig.cache │ │ │ │ └── ref │ │ │ │ └── CSD.SensorAppService.dll │ │ │ ├── SensorAppServiceLib.csproj.nuget.dgspec.json │ │ │ ├── SensorAppServiceLib.csproj.nuget.g.props │ │ │ ├── SensorAppServiceLib.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── ddl.sql │ ├── 005-SensorAppLazyWithoutProxies │ ├── SensorApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── SensorApp.csproj │ │ ├── SensorApp.csproj.user │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0-windows │ │ │ │ ├── Castle.Core.dll │ │ │ │ └── Microsoft.EntityFrameworkCore.Proxies.dll │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0-windows │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── MainWindow.g.i.cs │ │ │ │ ├── SensorApp.assets.cache │ │ │ │ ├── SensorApp.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorApp.designer.deps.json │ │ │ │ ├── SensorApp.designer.runtimeconfig.json │ │ │ │ ├── SensorApp_MarkupCompile.i.cache │ │ │ │ ├── SensorApp_MarkupCompile.i.lref │ │ │ │ └── apphost.exe │ │ │ ├── SensorApp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp.csproj.nuget.g.props │ │ │ ├── SensorApp.csproj.nuget.g.targets │ │ │ └── project.assets.json │ ├── SensorAppDAL │ │ ├── SensorAppDAL.csproj │ │ ├── SensorAppDataHelper.cs │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppDAL.assets.cache │ │ │ │ └── SensorAppDAL.csproj.FileListAbsolute.txt │ │ │ ├── SensorAppDAL.csproj.nuget.dgspec.json │ │ │ ├── SensorAppDAL.csproj.nuget.g.props │ │ │ ├── SensorAppDAL.csproj.nuget.g.targets │ │ │ └── project.assets.json │ ├── SensorAppRepositoryLib │ │ ├── .vs │ │ │ └── SensorAppRepositoryLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── Data │ │ │ ├── Port.cs │ │ │ ├── Repository │ │ │ │ ├── IPortRepository.cs │ │ │ │ ├── ISensorRepository.cs │ │ │ │ └── SensorRepository.cs │ │ │ ├── Sensor.cs │ │ │ └── SensorsDBContext.cs │ │ ├── SensorAppRepositoryLib.csproj │ │ ├── SensorAppRepositoryLib.sln │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppRepositoryLib.assets.cache │ │ │ │ └── SensorAppRepositoryLib.csproj.FileListAbsolute.txt │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.dgspec.json │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.g.props │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.g.targets │ │ │ └── project.assets.json │ ├── SensorAppServiceLib │ │ ├── Data │ │ │ ├── DTO │ │ │ │ ├── SensorInfoDTO.cs │ │ │ │ └── SensorSaveDTO.cs │ │ │ └── Service │ │ │ │ └── SensorAppService.cs │ │ ├── Global.cs │ │ ├── SensorAppServiceLib.csproj │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppServiceLib.assets.cache │ │ │ │ └── SensorAppServiceLib.csproj.FileListAbsolute.txt │ │ │ ├── SensorAppServiceLib.csproj.nuget.dgspec.json │ │ │ ├── SensorAppServiceLib.csproj.nuget.g.props │ │ │ ├── SensorAppServiceLib.csproj.nuget.g.targets │ │ │ └── project.assets.json │ └── ddl.sql │ ├── 006-SensorAppSP │ ├── SensorApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── SensorApp.csproj │ │ ├── SensorApp.csproj.user │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0-windows │ │ │ │ ├── AutoMapper.dll │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── Castle.Core.dll │ │ │ │ ├── Humanizer.dll │ │ │ │ ├── Mapster.Core.dll │ │ │ │ ├── Mapster.dll │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Proxies.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── SensorApp.deps.json │ │ │ │ ├── SensorApp.dll │ │ │ │ ├── SensorApp.exe │ │ │ │ ├── SensorApp.pdb │ │ │ │ ├── SensorApp.runtimeconfig.json │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ └── runtimes │ │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ └── netcoreapp3.1 │ │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ ├── win-arm │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ ├── Microsoft.Data.SqlClient.SNI.dll │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.pdb │ │ │ │ └── win │ │ │ │ └── lib │ │ │ │ ├── netcoreapp3.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Runtime.Caching.dll │ │ └── obj │ │ │ ├── Debug │ │ │ ├── net5.0-windows │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── MainWindow.g.i.cs │ │ │ │ ├── SensorApp.AssemblyInfo.cs │ │ │ │ ├── SensorApp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp.assets.cache │ │ │ │ ├── SensorApp.csproj.AssemblyReference.cache │ │ │ │ ├── SensorApp.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorApp.designer.deps.json │ │ │ │ ├── SensorApp.designer.runtimeconfig.json │ │ │ │ ├── SensorApp_MarkupCompile.i.cache │ │ │ │ ├── SensorApp_MarkupCompile.i.lref │ │ │ │ └── apphost.exe │ │ │ └── net6.0-windows │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── App.g.cs │ │ │ │ ├── App.g.i.cs │ │ │ │ ├── MainWindow.baml │ │ │ │ ├── MainWindow.g.cs │ │ │ │ ├── MainWindow.g.i.cs │ │ │ │ ├── SensorApp.AssemblyInfo.cs │ │ │ │ ├── SensorApp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp.assets.cache │ │ │ │ ├── SensorApp.csproj.AssemblyReference.cache │ │ │ │ ├── SensorApp.csproj.CopyComplete │ │ │ │ ├── SensorApp.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorApp.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorApp.dll │ │ │ │ ├── SensorApp.g.resources │ │ │ │ ├── SensorApp.genruntimeconfig.cache │ │ │ │ ├── SensorApp.pdb │ │ │ │ ├── SensorApp_2mdgo3sm_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_2mdgo3sm_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_2mdgo3sm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_2mdgo3sm_wpftmp.assets.cache │ │ │ │ ├── SensorApp_MarkupCompile.cache │ │ │ │ ├── SensorApp_MarkupCompile.i.cache │ │ │ │ ├── SensorApp_MarkupCompile.i.lref │ │ │ │ ├── SensorApp_MarkupCompile.lref │ │ │ │ ├── SensorApp_a15bvuwm_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_a15bvuwm_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_a15bvuwm_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_a15bvuwm_wpftmp.assets.cache │ │ │ │ ├── SensorApp_adsd4n5r_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_adsd4n5r_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_adsd4n5r_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_adsd4n5r_wpftmp.assets.cache │ │ │ │ ├── SensorApp_m13rcg0k_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_m13rcg0k_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_m13rcg0k_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_m13rcg0k_wpftmp.assets.cache │ │ │ │ ├── SensorApp_mtbv0ipy_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_mtbv0ipy_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_mtbv0ipy_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_mtbv0ipy_wpftmp.assets.cache │ │ │ │ ├── SensorApp_n3hs5ljh_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_n3hs5ljh_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_n3hs5ljh_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_n3hs5ljh_wpftmp.assets.cache │ │ │ │ ├── SensorApp_nqz25onu_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_nqz25onu_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_nqz25onu_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_nqz25onu_wpftmp.assets.cache │ │ │ │ ├── SensorApp_odc5cmtk_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_odc5cmtk_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_odc5cmtk_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_odc5cmtk_wpftmp.assets.cache │ │ │ │ ├── SensorApp_p1kv1qfe_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_p1kv1qfe_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_p1kv1qfe_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_p1kv1qfe_wpftmp.assets.cache │ │ │ │ ├── SensorApp_pyslcejw_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_pyslcejw_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_pyslcejw_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_pyslcejw_wpftmp.assets.cache │ │ │ │ ├── SensorApp_tvxqjl03_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_tvxqjl03_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_tvxqjl03_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_tvxqjl03_wpftmp.assets.cache │ │ │ │ ├── SensorApp_xgfkbxmq_wpftmp.AssemblyInfo.cs │ │ │ │ ├── SensorApp_xgfkbxmq_wpftmp.AssemblyInfoInputs.cache │ │ │ │ ├── SensorApp_xgfkbxmq_wpftmp.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorApp_xgfkbxmq_wpftmp.assets.cache │ │ │ │ ├── apphost.exe │ │ │ │ ├── ref │ │ │ │ └── SensorApp.dll │ │ │ │ └── refint │ │ │ │ └── SensorApp.dll │ │ │ ├── SensorApp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp.csproj.nuget.g.props │ │ │ ├── SensorApp.csproj.nuget.g.targets │ │ │ ├── SensorApp_2mdgo3sm_wpftmp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp_2mdgo3sm_wpftmp.csproj.nuget.g.props │ │ │ ├── SensorApp_2mdgo3sm_wpftmp.csproj.nuget.g.targets │ │ │ ├── SensorApp_adsd4n5r_wpftmp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp_adsd4n5r_wpftmp.csproj.nuget.g.props │ │ │ ├── SensorApp_adsd4n5r_wpftmp.csproj.nuget.g.targets │ │ │ ├── SensorApp_m13rcg0k_wpftmp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp_m13rcg0k_wpftmp.csproj.nuget.g.props │ │ │ ├── SensorApp_m13rcg0k_wpftmp.csproj.nuget.g.targets │ │ │ ├── SensorApp_mtbv0ipy_wpftmp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp_mtbv0ipy_wpftmp.csproj.nuget.g.props │ │ │ ├── SensorApp_mtbv0ipy_wpftmp.csproj.nuget.g.targets │ │ │ ├── SensorApp_n3hs5ljh_wpftmp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp_n3hs5ljh_wpftmp.csproj.nuget.g.props │ │ │ ├── SensorApp_n3hs5ljh_wpftmp.csproj.nuget.g.targets │ │ │ ├── SensorApp_nqz25onu_wpftmp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp_nqz25onu_wpftmp.csproj.nuget.g.props │ │ │ ├── SensorApp_nqz25onu_wpftmp.csproj.nuget.g.targets │ │ │ ├── SensorApp_odc5cmtk_wpftmp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp_odc5cmtk_wpftmp.csproj.nuget.g.props │ │ │ ├── SensorApp_odc5cmtk_wpftmp.csproj.nuget.g.targets │ │ │ ├── SensorApp_p1kv1qfe_wpftmp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp_p1kv1qfe_wpftmp.csproj.nuget.g.props │ │ │ ├── SensorApp_p1kv1qfe_wpftmp.csproj.nuget.g.targets │ │ │ ├── SensorApp_pyslcejw_wpftmp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp_pyslcejw_wpftmp.csproj.nuget.g.props │ │ │ ├── SensorApp_pyslcejw_wpftmp.csproj.nuget.g.targets │ │ │ ├── SensorApp_tvxqjl03_wpftmp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp_tvxqjl03_wpftmp.csproj.nuget.g.props │ │ │ ├── SensorApp_tvxqjl03_wpftmp.csproj.nuget.g.targets │ │ │ ├── SensorApp_xgfkbxmq_wpftmp.csproj.nuget.dgspec.json │ │ │ ├── SensorApp_xgfkbxmq_wpftmp.csproj.nuget.g.props │ │ │ ├── SensorApp_xgfkbxmq_wpftmp.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppDAL │ │ ├── SensorAppDAL.csproj │ │ ├── SensorAppDataHelper.cs │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppDAL.deps.json │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppDAL.runtimeconfig.dev.json │ │ │ │ ├── SensorAppDAL.runtimeconfig.json │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ └── SensorAppRepositoryLib.pdb │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppDAL.AssemblyInfo.cs │ │ │ │ ├── SensorAppDAL.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppDAL.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppDAL.assets.cache │ │ │ │ ├── SensorAppDAL.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppDAL.csproj.CopyComplete │ │ │ │ ├── SensorAppDAL.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppDAL.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.genruntimeconfig.cache │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── ref │ │ │ │ └── SensorAppDAL.dll │ │ │ │ └── refint │ │ │ │ └── SensorAppDAL.dll │ │ │ ├── SensorAppDAL.csproj.nuget.dgspec.json │ │ │ ├── SensorAppDAL.csproj.nuget.g.props │ │ │ ├── SensorAppDAL.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppRepositoryLib │ │ ├── .vs │ │ │ ├── ProjectEvaluation │ │ │ │ ├── sensorapprepositorylib.metadata.v2 │ │ │ │ ├── sensorapprepositorylib.metadata.v6.1 │ │ │ │ ├── sensorapprepositorylib.projects.v2 │ │ │ │ └── sensorapprepositorylib.projects.v6.1 │ │ │ └── SensorAppRepositoryLib │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── FileContentIndex │ │ │ │ ├── a4497e5d-dc7f-4ddc-a8c4-4e8bd311f45f.vsidx │ │ │ │ └── read.lock │ │ │ │ ├── v16 │ │ │ │ └── .suo │ │ │ │ └── v17 │ │ │ │ ├── .futdcache.v1 │ │ │ │ ├── .futdcache.v2 │ │ │ │ └── .suo │ │ ├── Data │ │ │ ├── Port.cs │ │ │ ├── Repository │ │ │ │ ├── IPortRepository.cs │ │ │ │ ├── ISensorRepository.cs │ │ │ │ └── SensorRepository.cs │ │ │ ├── Sensor.cs │ │ │ └── SensorsDBContext.cs │ │ ├── SensorAppRepositoryLib.csproj │ │ ├── SensorAppRepositoryLib.sln │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppRepositoryLib.deps.json │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ ├── SensorAppRepositoryLib.runtimeconfig.dev.json │ │ │ │ └── SensorAppRepositoryLib.runtimeconfig.json │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── SensorAppRepositoryLib.AssemblyInfo.cs │ │ │ │ ├── SensorAppRepositoryLib.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppRepositoryLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppRepositoryLib.assets.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.CopyComplete │ │ │ │ ├── SensorAppRepositoryLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppRepositoryLib.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ ├── SensorAppRepositoryLib.genruntimeconfig.cache │ │ │ │ ├── SensorAppRepositoryLib.pdb │ │ │ │ ├── ref │ │ │ │ └── SensorAppRepositoryLib.dll │ │ │ │ └── refint │ │ │ │ └── SensorAppRepositoryLib.dll │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.dgspec.json │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.g.props │ │ │ ├── SensorAppRepositoryLib.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── SensorAppServiceLib │ │ ├── Data │ │ │ ├── DTO │ │ │ │ ├── SensorInfoDTO.cs │ │ │ │ └── SensorSaveDTO.cs │ │ │ └── Service │ │ │ │ └── SensorAppService.cs │ │ ├── Global.cs │ │ ├── SensorAppServiceLib.csproj │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net5.0 │ │ │ │ ├── CSD.Data.dll │ │ │ │ ├── CSD.Data.pdb │ │ │ │ ├── CSD.SensorAppService.deps.json │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── CSD.SensorAppService.runtimeconfig.dev.json │ │ │ │ ├── CSD.SensorAppService.runtimeconfig.json │ │ │ │ ├── CSD.Util.Mappers.dll │ │ │ │ ├── CSD.Util.Mappers.pdb │ │ │ │ ├── CSDAsync.dll │ │ │ │ ├── CSDAsync.pdb │ │ │ │ ├── SensorAppDAL.dll │ │ │ │ ├── SensorAppDAL.pdb │ │ │ │ ├── SensorAppRepositoryLib.dll │ │ │ │ └── SensorAppRepositoryLib.pdb │ │ └── obj │ │ │ ├── Debug │ │ │ └── net5.0 │ │ │ │ ├── .NETCoreApp,Version=v5.0.AssemblyAttributes.cs │ │ │ │ ├── CSD.SensorAppService.dll │ │ │ │ ├── CSD.SensorAppService.pdb │ │ │ │ ├── SensorAppServiceLib.AssemblyInfo.cs │ │ │ │ ├── SensorAppServiceLib.AssemblyInfoInputs.cache │ │ │ │ ├── SensorAppServiceLib.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── SensorAppServiceLib.assets.cache │ │ │ │ ├── SensorAppServiceLib.csproj.AssemblyReference.cache │ │ │ │ ├── SensorAppServiceLib.csproj.CopyComplete │ │ │ │ ├── SensorAppServiceLib.csproj.CoreCompileInputs.cache │ │ │ │ ├── SensorAppServiceLib.csproj.FileListAbsolute.txt │ │ │ │ ├── SensorAppServiceLib.genruntimeconfig.cache │ │ │ │ ├── ref │ │ │ │ └── CSD.SensorAppService.dll │ │ │ │ └── refint │ │ │ │ └── CSD.SensorAppService.dll │ │ │ ├── SensorAppServiceLib.csproj.nuget.dgspec.json │ │ │ ├── SensorAppServiceLib.csproj.nuget.g.props │ │ │ ├── SensorAppServiceLib.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ └── ddl.sql │ └── SensorServiceApp_Java │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── csystem │ │ │ └── app │ │ │ └── service │ │ │ └── sensor │ │ │ ├── App.java │ │ │ ├── controller │ │ │ └── SensorController.java │ │ │ ├── data │ │ │ ├── dal │ │ │ │ └── SensorServiceHelper.java │ │ │ ├── entity │ │ │ │ ├── Sensor.java │ │ │ │ └── SensorData.java │ │ │ └── repository │ │ │ │ ├── ISensorDataRepository.java │ │ │ │ └── ISensorRepository.java │ │ │ ├── dto │ │ │ ├── SensorDTO.java │ │ │ ├── SensorDataDTO.java │ │ │ ├── SensorInfoNotFoundDTO.java │ │ │ └── SensorsDTO.java │ │ │ ├── mapper │ │ │ ├── ISensorDataMapper.java │ │ │ └── ISensorMapper.java │ │ │ └── service │ │ │ └── SensorAppService.java │ └── resources │ │ ├── application-demo.properties │ │ ├── application-dev.properties │ │ ├── application-test.properties │ │ ├── application.properties │ │ ├── dev_sensor_data.sql │ │ ├── dev_sensors.sql │ │ ├── test_sensor_data.sql │ │ └── test_sensors.sql │ └── test │ └── java │ └── org │ └── csystem │ └── app │ └── service │ └── sensor │ └── GenericappApplicationTests.java ├── databases ├── MSSQL │ ├── bankappdb │ │ └── 1.0.0 │ │ │ ├── ddl.sql │ │ │ └── dml.sql │ ├── communicationdb │ │ ├── ddl.sql │ │ └── sample-data │ │ │ ├── MSG_SETUP.txt │ │ │ ├── SEND.txt │ │ │ └── TABLE_SETUP.txt │ ├── competitiondb │ │ └── 1.0.0 │ │ │ ├── ddl.sql │ │ │ └── milyonist.xlsx │ └── gamedb │ │ └── 1.0.0 │ │ ├── ddl.sql │ │ ├── dml.sql │ │ └── test_data.sql └── PostgreSQL │ ├── bankappdb │ └── 1.0.0 │ │ └── ddl.sql │ ├── communicationdb │ ├── ddl.sql │ └── sample-data │ │ ├── MSG_SETUP.txt │ │ ├── SEND.txt │ │ └── TABLE_SETUP.txt │ ├── competitiondb │ └── 1.0.0 │ │ ├── ddl.sql │ │ └── milyonist.xlsx │ └── gamedb │ └── 1.0.0 │ ├── ddl.sql │ ├── dml.sql │ └── test_data.sql └── sample.sql /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | .DS_Store 4 | .DS_Store 5 | .DS_Store 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /Links.txt: -------------------------------------------------------------------------------- 1 | Dropbox Link : 2 | Github : https://github.com/oguzkaran/DBProgramming-Dec-2022 3 | 4 | 5 | 6 | İletişim Bilgileri: 7 | Oğuz Karan 8 | Email : oguzkaran@csystem.org 9 | Tel : 05325158012 10 | -------------------------------------------------------------------------------- /doc/Examples-MSSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/doc/Examples-MSSQL.txt -------------------------------------------------------------------------------- /doc/Examples-Oracle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/doc/Examples-Oracle.txt -------------------------------------------------------------------------------- /doc/Examples-PostgreSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/doc/Examples-PostgreSQL.txt -------------------------------------------------------------------------------- /doc/Examples-XML-JSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/doc/Examples-XML-JSON.txt -------------------------------------------------------------------------------- /doc/GeneralNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/doc/GeneralNotes.txt -------------------------------------------------------------------------------- /doc/InterviewQuestions/DBMS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/doc/InterviewQuestions/DBMS.pdf -------------------------------------------------------------------------------- /doc/InterviewQuestions/SQLInterviewQuestions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/doc/InterviewQuestions/SQLInterviewQuestions.pdf -------------------------------------------------------------------------------- /doc/notes/ECMA-404_2nd_edition_december_2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/doc/notes/ECMA-404_2nd_edition_december_2017.pdf -------------------------------------------------------------------------------- /homeworks/001-chesstournament/chesstournament.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/homeworks/001-chesstournament/chesstournament.PNG -------------------------------------------------------------------------------- /homeworks/02-healthcarecenter/healthcenter.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/homeworks/02-healthcarecenter/healthcenter.PNG -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/.idea/sqldialects.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalGetService/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/Services/AnimalGetService/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalGetService/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-maven-3.8.6-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar 3 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalGetService/src/main/java/org/csystem/app/service/animalhospital/animal/dto/AnimalsDTO.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.service.animalhospital.animal.dto; 2 | 3 | import java.util.List; 4 | 5 | public class AnimalsDTO { 6 | public List animals; 7 | } 8 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalGetService/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | #JDBC properties 2 | spring.datasource.url=jdbc:postgresql://localhost:5432/japp1j22_animalhospitaldb_dev 3 | spring.datasource.username=postgres 4 | spring.datasource.password=csd1993 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalGetService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalHospitalRepositoryLib/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/Services/AnimalHospitalRepositoryLib/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalHospitalRepositoryLib/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalHospitalRepositoryLib/src/main/java/com/metemengen/animalhospital/data/entity/orm/dto/AnimalSaveDTO.java: -------------------------------------------------------------------------------- 1 | package com.metemengen.animalhospital.data.entity.orm.dto; 2 | 3 | public class AnimalSaveDTO extends AnimalDTO { 4 | public String phone; 5 | } 6 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalHospitalRepositoryLib/src/main/resources/application-test.properties: -------------------------------------------------------------------------------- 1 | #JDBC properties 2 | spring.datasource.url=jdbc:postgresql://localhost:5432/japp1j22_animalhospitaldb_dev 3 | spring.datasource.username=postgres 4 | spring.datasource.password=csd1993 5 | 6 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalHospitalRepositoryLib/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/Services/AnimalHospitalRepositoryLib/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalPostService/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/Services/AnimalPostService/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalPostService/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-maven-3.8.6-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar 3 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalPostService/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | #JDBC properties 2 | spring.datasource.url=jdbc:postgresql://localhost:5432/japp1j22_animalhospitaldb_dev 3 | spring.datasource.username=postgres 4 | spring.datasource.password=csd1993 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/AnimalPostService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/OwnerGetService/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/Services/OwnerGetService/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/OwnerGetService/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-maven-3.8.6-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar 3 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/OwnerGetService/src/main/java/org/csystem/app/service/animalhospital/owner/dto/OwnersDTO.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.service.animalhospital.owner.dto; 2 | 3 | import java.util.List; 4 | 5 | public class OwnersDTO { 6 | public List owners; 7 | } 8 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/OwnerGetService/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | #JDBC properties 2 | spring.datasource.url=jdbc:postgresql://localhost:5432/japp1j22_animalhospitaldb_dev 3 | spring.datasource.username=postgres 4 | spring.datasource.password=csd1993 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/OwnerGetService/src/main/resources/application-test.properties: -------------------------------------------------------------------------------- 1 | #JDBC properties 2 | spring.datasource.url=jdbc:postgresql://csd-postgresql-db.cmxkkfycsomh.us-east-1.rds.amazonaws.com/japp1j22_animalhospitaldb_test 3 | spring.datasource.username=postgres 4 | spring.datasource.password=csystem1993 5 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/OwnerGetService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianAnimalPostService/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/Services/VeterinarianAnimalPostService/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianAnimalPostService/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | #JDBC properties 2 | spring.datasource.url=jdbc:postgresql://localhost:5432/japp1j22_animalhospitaldb_dev 3 | spring.datasource.username=postgres 4 | spring.datasource.password=csd1993 5 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianAnimalPostService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianGetService/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/Services/VeterinarianGetService/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianGetService/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-maven-3.8.6-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar 3 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianGetService/src/main/java/org/csystem/app/service/animalhospital/veterinarian/dto/VeterinarianStatusInfo.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.service.animalhospital.veterinarian.dto; 2 | 3 | public class VeterinarianStatusInfo { 4 | public String message; 5 | public long diplomaNo; 6 | } 7 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianGetService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianPostService/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/Services/VeterinarianPostService/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianPostService/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-maven-3.8.6-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar 3 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianPostService/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | #JDBC properties 2 | spring.datasource.url=jdbc:postgresql://localhost:5432/japp1j22_animalhospitaldb_dev 3 | spring.datasource.username=postgres 4 | spring.datasource.password=csd1993 5 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianPostService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianWebApplication/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/Services/VeterinarianWebApplication/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianWebApplication/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-maven-3.8.6-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-wrapper-3.1.0.jar 3 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianWebApplication/src/main/java/com/busrapolat/app/web/veterinarian/model/VeterinariansModel.java: -------------------------------------------------------------------------------- 1 | package com.busrapolat.app.web.veterinarian.model; 2 | 3 | import java.util.List; 4 | 5 | public class VeterinariansModel { 6 | public List veterinarians; 7 | } 8 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/Services/VeterinarianWebApplication/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/AnimalGetService/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/AnimalGetService/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/AnimalGetService/src/main/java/org/csystem/app/service/animalhospital/animal/dto/AnimalsDTO.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.service.animalhospital.animal.dto; 2 | 3 | import java.util.List; 4 | 5 | public class AnimalsDTO { 6 | public List animals; 7 | } 8 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/AnimalGetService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/AnimalHospitalRepositoryLib/src/main/java/com/atahanyengin/animalhospital/data/entity/orm/dto/AnimalSaveDTO.java: -------------------------------------------------------------------------------- 1 | package com.atahanyengin.animalhospital.data.entity.orm.dto; 2 | 3 | public class AnimalSaveDTO extends AnimalDTO { 4 | public String phone; 5 | } 6 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/AnimalHospitalRepositoryLib/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/AnimalPostService/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/AnimalPostService/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/AnimalPostService/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | #JDBC properties 2 | spring.datasource.url=jdbc:mysql://localhost:3306/japp1j22_animalserviceappdb_dev 3 | spring.datasource.username=root 4 | spring.datasource.password=csd1993 5 | 6 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/AnimalPostService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/OwnerGetService/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/OwnerGetService/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/OwnerGetService/src/main/java/org/csystem/app/service/animalhospital/owner/dto/OwnersDTO.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.service.animalhospital.owner.dto; 2 | 3 | import java.util.List; 4 | 5 | public class OwnersDTO { 6 | public List owners; 7 | } 8 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/OwnerGetService/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | #JDBC properties 2 | spring.datasource.url=jdbc:mysql://localhost:3306/japp1j22_animalserviceappdb_dev 3 | spring.datasource.username=root 4 | spring.datasource.password=csd1993 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/OwnerGetService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/target/AnimalServiceApp-1.0.0.jar: -------------------------------------------------------------------------------- 1 | PK -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/target/AnimalServiceApp-1.0.0.jar.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/target/AnimalServiceApp-1.0.0.jar.original -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/AnimalServiceApp/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=AnimalServiceApp 2 | groupId=org.csystem 3 | version=1.0.0 4 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianAnimalSchedulerApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianAnimalSchedulerApp/.idea/jpa-buddy.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianAnimalSchedulerApp/VeterinarianAnimalScheduler/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianAnimalServiceApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianAnimalServiceApp/VeterinarianAnimalPostService/src/main/java/org/csystem/app/service/animalhospital/dto/client/ExistsDTO.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.service.animalhospital.dto.client; 2 | 3 | public class ExistsDTO { 4 | public boolean exists; 5 | } 6 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianAnimalServiceApp/VeterinarianAnimalPostService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianAnimalServiceApp/VeterinarianAnimalRepositoryLib/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianAnimalServiceApp/VeterinarianAnimalScheduler/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianServiceApp/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianServiceApp/VeterinarianGetService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianServiceApp/VeterinarianPostService/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | #JDBC properties 2 | spring.datasource.url=jdbc:postgresql://localhost:5432/japp1j22_veterinarianserviceappdb_dev 3 | spring.datasource.username=postgres 4 | spring.datasource.password=csd1993 5 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianServiceApp/VeterinarianPostService/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianServiceApp/VeterinarianRepositoryLib/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/SampleApplications/AnimalHospital/ServicesCommunicate/VeterinarianServiceApp/VeterinarianWebApplication/src/main/resources/banner.txt: -------------------------------------------------------------------------------- 1 | 2 | _____ _____ _____ 3 | / ____|/ ____| __ \ 4 | | | | (___ | | | | 5 | | | \___ \| | | | 6 | | |____ ____) | |__| | 7 | \_____|_____/|_____/ 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/.vs/AsyncUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/.vs/AsyncUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/.vs/AsyncUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/.vs/AsyncUtilLib/v16/.suo -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/AsyncUtilLib.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net5.0 5 | CSDAsync 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/bin/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/bin/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/bin/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/bin/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/bin/Debug/net5.0/ref/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/bin/Debug/net5.0/ref/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/bin/Release/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/bin/Release/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/bin/Release/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/bin/Release/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/bin/Release/net5.0/ref/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/bin/Release/net5.0/ref/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/AsyncUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f546a1e598fdf3d0369108cef09db781064ed928 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/AsyncUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/AsyncUtilLib.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/AsyncUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/AsyncUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/AsyncUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1be83fec3d484c50456a9b297b24d46169be13b0 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/ref/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Debug/net5.0/ref/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Release/net5.0/AsyncUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 3c5b1f2dd7f45a295bbff60d2e8dabebbff13595 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Release/net5.0/AsyncUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Release/net5.0/AsyncUtilLib.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Release/net5.0/AsyncUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Release/net5.0/AsyncUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6738b8898c4a9935890602231635085aaa4e8d40 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Release/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Release/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Release/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Release/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Release/net5.0/ref/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/AsyncUtilLib/obj/Release/net5.0/ref/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/.vs/DataBindingLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataBindingLib/.vs/DataBindingLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/.vs/DataBindingLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataBindingLib/.vs/DataBindingLib/v16/.suo -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/bin/Release/net5.0/CSD.Util.Databinding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataBindingLib/bin/Release/net5.0/CSD.Util.Databinding.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/bin/Release/net5.0/CSD.Util.Databinding.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataBindingLib/bin/Release/net5.0/CSD.Util.Databinding.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/bin/Release/net5.0/ref/CSD.Util.Databinding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataBindingLib/bin/Release/net5.0/ref/CSD.Util.Databinding.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Debug/net5.0/DataBindingLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 1bc0a40f02e7e5eea43d766df8b77ce4b41a75d5 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Debug/net5.0/DataBindingLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Debug/net5.0/DataBindingLib.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Debug/net5.0/DataBindingLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Release/net5.0/CSD.Util.Databinding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Release/net5.0/CSD.Util.Databinding.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Release/net5.0/CSD.Util.Databinding.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Release/net5.0/CSD.Util.Databinding.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Release/net5.0/DataBindingLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 04b5642c0378df191aef79460a921804e191a420 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Release/net5.0/DataBindingLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Release/net5.0/DataBindingLib.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Release/net5.0/DataBindingLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Release/net5.0/DataBindingLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d2587351c5a27f7aeffc8529bd76ed72b9db947a 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Release/net5.0/ref/CSD.Util.Databinding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataBindingLib/obj/Release/net5.0/ref/CSD.Util.Databinding.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/.vs/DataUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/.vs/DataUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/.vs/DataUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/.vs/DataUtilLib/v16/.suo -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/.vs/DataUtilLib/v16/TestStore/0/000.testlog: -------------------------------------------------------------------------------- 1 | !!tItseT -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/.vs/DataUtilLib/v16/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/.vs/DataUtilLib/v16/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/Repository/IEntity.cs: -------------------------------------------------------------------------------- 1 | namespace CSD.Util.Data.Repository 2 | { 3 | public interface IEntity 4 | { 5 | public ID Id { get; set; } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/bin/Release/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/bin/Release/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/bin/Release/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/bin/Release/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/bin/Release/net5.0/ref/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/bin/Release/net5.0/ref/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bd98d00284db39f31da2ae850770696dafe79247 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/DataUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a14d26fc06f737478cf7633e0de9f9ccf6e09574 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/ref/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Debug/net5.0/ref/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Release/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Release/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Release/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Release/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 62cdc03296439a227519628c2ee2822188732b74 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Release/net5.0/DataUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6fa22bbea6e04686a019ae5d135e4a3bd41c7e0d 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Release/net5.0/ref/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/DataUtilLib/obj/Release/net5.0/ref/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/.vs/ExceptionUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/.vs/ExceptionUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/.vs/ExceptionUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/.vs/ExceptionUtilLib/v16/.suo -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/bin/Release/net5.0/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/bin/Release/net5.0/CSD.Util.Error.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/bin/Release/net5.0/CSD.Util.Error.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/bin/Release/net5.0/CSD.Util.Error.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/bin/Release/net5.0/ref/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/bin/Release/net5.0/ref/CSD.Util.Error.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Debug/net5.0/ExceptionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 64d4e3764247232f515fa15d228da09384a14b29 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Debug/net5.0/ExceptionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Debug/net5.0/ExceptionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Debug/net5.0/ExceptionUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Release/net5.0/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Release/net5.0/CSD.Util.Error.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Release/net5.0/CSD.Util.Error.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Release/net5.0/CSD.Util.Error.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6258735cc56e45a734b551307434d6d9c2abdf5b 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Release/net5.0/ExceptionUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bce68447b6806f11e41ae4bcb7ec79a6841ce2b4 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Release/net5.0/ref/CSD.Util.Error.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/ExceptionUtilLib/obj/Release/net5.0/ref/CSD.Util.Error.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/HttpClientExtensionLib/.vs/HttpClientExtensionLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/HttpClientExtensionLib/.vs/HttpClientExtensionLib/v16/.suo -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/HttpClientExtensionLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e5b65ac8b3284b0c70690f29e4fc25160a406522 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Debug/netcoreapp3.1/HttpClientExtensionLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6ccacef4b00142825baac93aaee93510fe5eff39 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/HttpClientExtensionLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fe49e8bb58d24f7bbaa897795e5dcf35416f0a16 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/net5.0/HttpClientExtensionLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4594ff4e1bf3507b97e4bb69fd20f83c9eab24ae 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/HttpClientExtensionLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fe49e8bb58d24f7bbaa897795e5dcf35416f0a16 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/HttpClientExtensionLib/HttpClientExtensionLib/obj/Release/netcoreapp3.1/HttpClientExtensionLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 74b0985b339c411ee1fc8564ec66b054b6987050 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/.vs/MapperUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/.vs/MapperUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/.vs/MapperUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/.vs/MapperUtilLib/v16/.suo -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/IMapper.cs: -------------------------------------------------------------------------------- 1 | namespace CSD.Util.Mappers 2 | { 3 | public interface IMapper 4 | { 5 | D Map(S source); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/Mapster/Mapper.cs: -------------------------------------------------------------------------------- 1 | using Mapster; 2 | 3 | namespace CSD.Util.Mappers.Mapster 4 | { 5 | public class Mapper : IMapper 6 | { 7 | public D Map(S source) 8 | { 9 | return source.Adapt(); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/bin/Release/net5.0/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/bin/Release/net5.0/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/bin/Release/net5.0/CSD.Util.Mappers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/bin/Release/net5.0/CSD.Util.Mappers.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/bin/Release/net5.0/ref/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/bin/Release/net5.0/ref/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Debug/net5.0/MapperUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 18be97ec6e85f9d1cfb0348d05bab9e330ec31db 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Debug/net5.0/MapperUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Debug/net5.0/MapperUtilLib.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Debug/net5.0/MapperUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Release/net5.0/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Release/net5.0/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Release/net5.0/CSD.Util.Mappers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Release/net5.0/CSD.Util.Mappers.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 959e76555e1c12569262c590ffa82c3866af65c2 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Release/net5.0/MapperUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f124e1ed731694ced422005f4d97f3cbb188dad6 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Release/net5.0/ref/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/MapperUtilLib/obj/Release/net5.0/ref/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/.vs/TaskUtilLib/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/.vs/TaskUtilLib/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/.vs/TaskUtilLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/.vs/TaskUtilLib/v16/.suo -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/TaskUtilLib.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | net5.0 5 | CSD.Util.TPL 6 | CSD.Util 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/bin/Debug/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/bin/Debug/net5.0/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/bin/Debug/net5.0/CSD.Util.TPL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/bin/Debug/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/bin/Debug/net5.0/ref/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/bin/Debug/net5.0/ref/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/bin/Release/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/bin/Release/net5.0/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/bin/Release/net5.0/CSD.Util.TPL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/bin/Release/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/bin/Release/net5.0/ref/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/bin/Release/net5.0/ref/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Debug/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Debug/net5.0/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Debug/net5.0/CSD.Util.TPL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Debug/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0fda6dfab65f1b620427326dffe4eaa2e582403c 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- 1 | MBRSC -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Debug/net5.0/TaskUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4ea159314cb32962b927491bd7e5627135c45aaa 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Debug/net5.0/ref/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Debug/net5.0/ref/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/CSD.Util.TPL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/CSD.Util.TPL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | abf1a4cf5d42a29319f4312284b916863531c348 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/TaskUtilLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 600d45b1f72da77c543360acca25fb3238bc5598 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/ref/CSD.Util.TPL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/Libraries/TaskUtilLib/obj/Release/net5.0/ref/CSD.Util.TPL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/AutoMapper.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSD.SensorAppService.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSD.SensorAppService.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSD.SensorAppService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSD.SensorAppService.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSD.Util.Mappers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSD.Util.Mappers.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/Humanizer.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/Mapster.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/Mapster.Core.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/Mapster.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/Mapster.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/SensorApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/SensorApp.exe -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/SensorApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/SensorApp.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/bin/Debug/net6.0-windows/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net5.0-windows/SensorApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net5.0-windows/SensorApp.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net5.0-windows/SensorApp.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net5.0-windows/SensorApp_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\oguzkaran\Dropbox\CSD\Kurslar\Alga-WPF-Jan-2022\src\Projects\020-SensorApp\001-SensorApp\SensorApp\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/MainWindow.baml -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a7598b9f3947532d8478b4310347fd82d3a89f25 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp.g.resources -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | fc94251ade00e88a5f1618dff59265be81bf10ce 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\oguzkaran\Dropbox\CSD\Kurslar\Alga-WPF-Jan-2022\src\Projects\020-SensorApp\001-SensorApp\SensorApp\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\oguzkaran\Dropbox\CSD\Kurslar\Alga-WPF-Jan-2022\src\Projects\020-SensorApp\001-SensorApp\SensorApp\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/SensorApp_yti2cvrb_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/apphost.exe -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/ref/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/ref/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/refint/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/Debug/net6.0-windows/refint/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorApp/obj/SensorApp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\oguzkaran\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\oguzkaran\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/SensorAppRepositoryLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/SensorAppRepositoryLib.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/SensorAppRepositoryLib.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/bin/Debug/net5.0/SensorAppRepositoryLib.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7f8bb491a78b53ba892c4912bc9354ca5f2f733a 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4559d893afedd98f4d0be0f852f4b1b4c0f33970 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 5972438c7bc0db84085ba27fabed4bf8434cc578 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/ref/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/ref/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/refint/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/Debug/net5.0/refint/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppDAL/obj/SensorAppDAL.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/.vs/SensorAppRepositoryLib/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/.vs/SensorAppRepositoryLib/v16/.suo -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/.vs/SensorAppRepositoryLib/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/.vs/SensorAppRepositoryLib/v17/.suo -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/bin/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/bin/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/bin/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/bin/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/bin/Debug/net5.0/SensorAppRepositoryLib.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\oguzkaran\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\oguzkaran\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/bin/Debug/net5.0/SensorAppRepositoryLib.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b68bacceb5e75929edf6dcfb1c178a4b7447c473 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5e501298c5b45a9faa45cc292ae9f5c616c95e81 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 9f8b920353bbdb0f204b84a19c3290f8a1e491ff 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppRepositoryLib/obj/SensorAppRepositoryLib.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSD.SensorAppService.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\oguzkaran\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\oguzkaran\\.nuget\\packages" 6 | ] 7 | } 8 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSD.SensorAppService.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSD.Util.Mappers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSD.Util.Mappers.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/bin/Debug/net5.0/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 472fb6be34a46c59da87dcc9879ce7e7d2e544e6 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 54720f67b7cdb67ab3771d77b4cd6764faa67e54 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 1d868dd541d00b2f8f5c9dc2992deff9b9e50bf5 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/001-SensorApp/SensorAppServiceLib/obj/SensorAppServiceLib.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/AutoMapper.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/Humanizer.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/Mapster.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/Mapster.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/SensorApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/SensorApp.exe -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/SensorApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/SensorApp.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/bin/Debug/net5.0-windows/SensorApp.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/obj/Debug/net5.0-windows/SensorApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/obj/Debug/net5.0-windows/SensorApp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8e5eaa1ab5aafdcb7a0f03cab554e2313d63d24e 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/obj/Debug/net5.0-windows/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/obj/Debug/net5.0-windows/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/obj/Debug/net5.0-windows/SensorApp.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | e6400cf73903db2b805e7a6decf2cbbdfc46b80a 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/obj/Debug/net5.0-windows/SensorApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/obj/Debug/net5.0-windows/SensorApp.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/obj/Debug/net5.0-windows/SensorApp_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\Karans\Dropbox\CSD\Kurslar\Alga-WPF-Jan-2022\src\Projects\020-SensorApp\002-SensorAppHttpClient\SensorApp\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorApp/obj/SensorApp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7f8bb491a78b53ba892c4912bc9354ca5f2f733a 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 51d088f361bf1d5f178c4a2d84a3ec895754c58b 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 00774f5f3d83fd02f83305f7f8c9634b4869743c 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppDAL/obj/SensorAppDAL.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppRepositoryLib/bin/Debug/net5.0/SensorAppRepositoryLib.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b68bacceb5e75929edf6dcfb1c178a4b7447c473 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a84fa2bf1d2f2357a7bbb03577263a22a1fbda24 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | bf5afeda658508ce246e93610e07e3c64a46d858 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppRepositoryLib/obj/SensorAppRepositoryLib.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/bin/Debug/net5.0/CSD.SensorAppService.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 472fb6be34a46c59da87dcc9879ce7e7d2e544e6 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0bf6bff92f6618cc36a6d0d44c6eb07fe5b9ae84 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 80d341ceb6138767d943119bec7cffe31dd35642 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/002-SensorAppHttpClient/SensorAppServiceLib/obj/SensorAppServiceLib.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/AutoMapper.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/Humanizer.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/Mapster.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/Mapster.Core.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/Mapster.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/Mapster.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/SensorApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/SensorApp.exe -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/SensorApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/SensorApp.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/SensorApp.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/bin/Debug/net5.0-windows/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/MainWindow.baml -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/SensorApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/SensorApp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5c3df08f6df2b658254f4c711ca5d0f1843da8df 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/SensorApp.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 628e740a38c07a2bce4727a0f3f3c98446014d9e 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/SensorApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/SensorApp.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/SensorApp_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\Karans\Dropbox\CSD\Kurslar\Alga-WPF-Jan-2022\src\Projects\020-SensorApp\003-SensorAppAutoCrud\SensorApp\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/SensorApp_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\Karans\Dropbox\CSD\Kurslar\Alga-WPF-Jan-2022\src\Projects\020-SensorApp\003-SensorAppAutoCrud\SensorApp\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorApp/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/ref/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/bin/Debug/net5.0/ref/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7f8bb491a78b53ba892c4912bc9354ca5f2f733a 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 17fe9696fc8e765c52b35807cdb4b6cb64edb030 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | e01e6d5e5c9a5e98da955e5b68b53b3373d4d831 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/obj/Debug/net5.0/ref/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppDAL/obj/Debug/net5.0/ref/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppRepositoryLib/bin/Debug/net5.0/SensorAppRepositoryLib.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b68bacceb5e75929edf6dcfb1c178a4b7447c473 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a184b9e9806d4b60e4cfff79aeb150adbc34775b 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 439b7551475b8c7d688114b3f503a431190b83a3 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppServiceLib/bin/Debug/net5.0/CSD.SensorAppService.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 472fb6be34a46c59da87dcc9879ce7e7d2e544e6 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d65a2af624a250d5bb06252dfdf47adb354f5f93 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/003-SensorAppAutoCrud/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 6469ad9bfefcfe96e1ac84e549e465d59a85a0fe 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/Humanizer.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/Mapster.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/Mapster.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/SensorApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/SensorApp.exe -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/SensorApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/SensorApp.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/bin/Debug/net5.0-windows/SensorApp.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.WindowsDesktop.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/obj/Debug/net5.0-windows/SensorApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/obj/Debug/net5.0-windows/SensorApp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ec8ce05e4249cee79728390a9cb03c801489267f 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/obj/Debug/net5.0-windows/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/obj/Debug/net5.0-windows/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/obj/Debug/net5.0-windows/SensorApp.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 9d4ef3af241767de22dab1840064a661330634cb 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/obj/Debug/net5.0-windows/SensorApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/obj/Debug/net5.0-windows/SensorApp.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/obj/Debug/net5.0-windows/SensorApp_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\Karans\Dropbox\CSD\Kurslar\Alga-WPF-Jan-2022\src\Projects\020-SensorApp\004-SensorApp\SensorApp\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/obj/Debug/net5.0-windows/SensorApp_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\Karans\Dropbox\CSD\Kurslar\Alga-WPF-Jan-2022\src\Projects\020-SensorApp\004-SensorApp\SensorApp\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorApp/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7f8bb491a78b53ba892c4912bc9354ca5f2f733a 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a0d3562eeb4c188f56a5b99b1426d06ea4873d01 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 929c73feb6a5928d1ce3d7c707174a7271330ade 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppRepositoryLib/bin/Debug/net5.0/SensorAppRepositoryLib.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b68bacceb5e75929edf6dcfb1c178a4b7447c473 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 825ca299cc023d8660c7c608a2b9feab738414c7 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 151c57812579c0b29aee9346aad4c02e7bb71bf9 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppServiceLib/bin/Debug/net5.0/CSD.SensorAppService.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 472fb6be34a46c59da87dcc9879ce7e7d2e544e6 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 30260b089e7096350daf2fbad89ee135fb4d1145 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/004-SensorAppLazyLoading/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 03b7a135406d7baff8dcdac19693bb38af5c9771 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/005-SensorAppLazyWithoutProxies/SensorApp/obj/Debug/net5.0-windows/SensorApp_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\Karans\Dropbox\CSD\Kurslar\Alga-WPF-Jan-2022\src\Projects\020-SensorApp\004-SensorAppLazyWithoutProxies\SensorApp\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/AutoMapper.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/CSD.Util.Mappers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/CSD.Util.Mappers.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/CSD.Util.Mappers.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/CSD.Util.Mappers.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/Castle.Core.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/Humanizer.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/Mapster.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/Mapster.Core.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/Mapster.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/Mapster.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/SensorApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/SensorApp.exe -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/SensorApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/SensorApp.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/bin/Debug/net6.0-windows/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net5.0-windows/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net5.0-windows/SensorApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net5.0-windows/SensorApp.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net5.0-windows/SensorApp.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net5.0-windows/SensorApp_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\oguzkaran\Dropbox\CSD\Kurslar\Alga-WPF-Jan-2022\src\Projects\020-SensorApp\006-SensorAppSP\SensorApp\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net5.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net5.0-windows/apphost.exe -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/MainWindow.baml -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 188272db08d712761bce9016c6366e84d1489a1b 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp.g.resources -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | f0afbedb651ee2bbc0b75e6ac605dae6df411086 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_2mdgo3sm_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_MarkupCompile.i.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\Karans\Desktop\DBProg\020-SensorApp\006-SensorAppSP\SensorApp\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_MarkupCompile.lref: -------------------------------------------------------------------------------- 1 |  2 | 3 | FC:\Users\Karans\Desktop\DBProg\020-SensorApp\006-SensorAppSP\SensorApp\MainWindow.xaml;; 4 | 5 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_a15bvuwm_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_adsd4n5r_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_m13rcg0k_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_mtbv0ipy_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_n3hs5ljh_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_nqz25onu_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_odc5cmtk_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_p1kv1qfe_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_pyslcejw_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_tvxqjl03_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/SensorApp_xgfkbxmq_wpftmp.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 930c1ea36590ed1ea5eac03e68ee0de471e19094 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/apphost.exe -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/ref/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/ref/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/refint/SensorApp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/Debug/net6.0-windows/refint/SensorApp.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/SensorApp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/SensorApp_2mdgo3sm_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/SensorApp_adsd4n5r_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/SensorApp_m13rcg0k_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/SensorApp_mtbv0ipy_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/SensorApp_n3hs5ljh_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/SensorApp_nqz25onu_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/SensorApp_odc5cmtk_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/SensorApp_p1kv1qfe_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/SensorApp_pyslcejw_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/SensorApp_tvxqjl03_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorApp/obj/SensorApp_xgfkbxmq_wpftmp.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/SensorAppDAL.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/SensorAppRepositoryLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/bin/Debug/net5.0/SensorAppRepositoryLib.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7f8bb491a78b53ba892c4912bc9354ca5f2f733a 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.assets.cache -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 206b43c6e1bbe8fb3ba03a65d21cbad4ea1ce91e 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | e69c9fd25c7af404dbbf9229344f5a03bd3b5486 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/ref/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/ref/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/refint/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/Debug/net5.0/refint/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppDAL/obj/SensorAppDAL.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/bin/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/bin/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/bin/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/bin/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/bin/Debug/net5.0/SensorAppRepositoryLib.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b68bacceb5e75929edf6dcfb1c178a4b7447c473 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7b2a7ed56821b9fe08014bca4427b3173c62b3e6 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/obj/Debug/net5.0/SensorAppRepositoryLib.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | df53c99cbf3510cfd60cbc56288e03e0bb95e328 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppRepositoryLib/obj/SensorAppRepositoryLib.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/CSD.Data.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/CSD.SensorAppService.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net5.0", 4 | "framework": { 5 | "name": "Microsoft.NETCore.App", 6 | "version": "5.0.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/CSDAsync.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/SensorAppDAL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/SensorAppDAL.dll -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/SensorAppDAL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/bin/Debug/net5.0/SensorAppDAL.pdb -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 472fb6be34a46c59da87dcc9879ce7e7d2e544e6 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d5d172634f65bcb1137efcdfb9dd3575ad577550 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/obj/Debug/net5.0/SensorAppServiceLib.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | ddb699cb1b9646fa983afa9065fd34656562b783 2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/006-SensorAppSP/SensorAppServiceLib/obj/SensorAppServiceLib.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/SensorServiceApp_Java/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/SampleApplications/SensorApplication/SensorApp/SensorServiceApp_Java/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/SensorServiceApp_Java/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.3/apache-maven-3.8.3-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /src/SampleApplications/SensorApplication/SensorApp/SensorServiceApp_Java/src/main/java/org/csystem/app/service/sensor/dto/SensorsDTO.java: -------------------------------------------------------------------------------- 1 | package org.csystem.app.service.sensor.dto; 2 | 3 | import java.util.List; 4 | 5 | public class SensorsDTO { 6 | public List sensors; 7 | } 8 | -------------------------------------------------------------------------------- /src/databases/MSSQL/bankappdb/1.0.0/dml.sql: -------------------------------------------------------------------------------- 1 | /*---------------------------------------------------------------------------------------------------------------------- 2 | bankappdb 1.0.0 3 | -----------------------------------------------------------------------------------------------------------------------*/ 4 | 5 | -------------------------------------------------------------------------------- /src/databases/MSSQL/competitiondb/1.0.0/milyonist.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/databases/MSSQL/competitiondb/1.0.0/milyonist.xlsx -------------------------------------------------------------------------------- /src/databases/PostgreSQL/competitiondb/1.0.0/milyonist.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oguzkaran/DBProgramming-Dec-2022/17583305c3d4b2e328025d34ee3a474542efa2be/src/databases/PostgreSQL/competitiondb/1.0.0/milyonist.xlsx -------------------------------------------------------------------------------- /src/sample.sql: -------------------------------------------------------------------------------- 1 | /*---------------------------------------------------------------------------------------------------------------------- 2 | dbpd22_bankappdb veritabanı Version: 1.0.0 3 | -----------------------------------------------------------------------------------------------------------------------*/ --------------------------------------------------------------------------------