Changeset a8ccc2c
- Timestamp:
- 07/22/20 15:23:50 (4 years ago)
- Branches:
- master
- Children:
- 37c8d1d
- Parents:
- 96108d8
- Files:
-
- 6 added
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko.sln
r96108d8 ra8ccc2c 6 6 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Farmatiko", "Farmatiko\Farmatiko.csproj", "{36086D69-E8B8-4F14-8F25-D262410306EB}" 7 7 EndProject 8 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FarmatikoData", "FarmatikoData\FarmatikoData.csproj", "{5BC55BDD-A064-4CE7-8606-D2FF42699EBF}" 8 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FarmatikoData", "FarmatikoData\FarmatikoData.csproj", "{5BC55BDD-A064-4CE7-8606-D2FF42699EBF}" 9 EndProject 10 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FarmatikoServices", "FarmatikoServices\FarmatikoServices.csproj", "{D207CD1B-4C31-4414-9EF4-DC18F219CBF6}" 9 11 EndProject 10 12 Global … … 22 24 {5BC55BDD-A064-4CE7-8606-D2FF42699EBF}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 25 {5BC55BDD-A064-4CE7-8606-D2FF42699EBF}.Release|Any CPU.Build.0 = Release|Any CPU 26 {D207CD1B-4C31-4414-9EF4-DC18F219CBF6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 27 {D207CD1B-4C31-4414-9EF4-DC18F219CBF6}.Debug|Any CPU.Build.0 = Debug|Any CPU 28 {D207CD1B-4C31-4414-9EF4-DC18F219CBF6}.Release|Any CPU.ActiveCfg = Release|Any CPU 29 {D207CD1B-4C31-4414-9EF4-DC18F219CBF6}.Release|Any CPU.Build.0 = Release|Any CPU 24 30 EndGlobalSection 25 31 GlobalSection(SolutionProperties) = preSolution -
Farmatiko/ClientApp/src/app/korona/korona.component.css
r96108d8 ra8ccc2c 1 1 .counter { 2 background-color:#f5f5f5;3 4 2 background-color: #f5f5f5; 3 padding: 20px 0; 4 border-radius: 5px; 5 5 } 6 6 7 7 .count-title { 8 9 10 11 12 8 font-size: 40px; 9 font-weight: normal; 10 margin-top: 10px; 11 margin-bottom: 0; 12 text-align: center; 13 13 } 14 14 15 15 .count-text { 16 17 18 19 20 16 font-size: 13px; 17 font-weight: normal; 18 margin-top: 10px; 19 margin-bottom: 0; 20 text-align: center; 21 21 } 22 22 23 23 .fa-2x { 24 25 26 27 24 margin: 0 auto; 25 float: none; 26 display: table; 27 color: #4ad1e5; 28 28 } -
Farmatiko/ClientApp/src/app/korona/korona.component.spec.ts
r96108d8 ra8ccc2c 9 9 beforeEach(async(() => { 10 10 TestBed.configureTestingModule({ 11 declarations: [ KoronaComponent]11 declarations: [KoronaComponent] 12 12 }) 13 .compileComponents();13 .compileComponents(); 14 14 })); 15 15 -
Farmatiko/ClientApp/src/app/models/Medicine.ts
r96108d8 ra8ccc2c 1 1 export class Medicine { 2 3 4 5 6 7 8 2 Name: string; 3 Strength: string; 4 Form: string; 5 WayOfIssuing: string; 6 Manufacturer: string; 7 Price: Float32Array; 8 Packaging: string; 9 9 } -
Farmatiko/Farmatiko.csproj
r96108d8 ra8ccc2c 38 38 </ItemGroup> 39 39 40 <ItemGroup>41 <Folder Include="Services\" />42 </ItemGroup>43 44 40 <Target Name="DebugEnsureNodeEnv" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('$(SpaRoot)node_modules') "> 45 41 <!-- Ensure Node.js is installed --> -
Farmatiko/appsettings.json
r96108d8 ra8ccc2c 1 1 { 2 2 "ConnectionStrings": { 3 "FarmatikoConnection": " User ID=postgres;Password=@@Farmatiko@@.;database=FarmatikoDb;Integrated Security=true; Pooling=true;"3 "FarmatikoConnection": "Host=localhost;User ID=postgres;Password=@@Postgres@@.;database=FarmatikoDb;Integrated Security=true; Pooling=true;" 4 4 }, 5 5 "Logging": { -
FarmatikoData/Models/HealthFacilities.cs
r96108d8 ra8ccc2c 3 3 using System.ComponentModel.DataAnnotations; 4 4 using System.Text; 5 using FarmatikoData.Base; 5 6 using Microsoft.EntityFrameworkCore; 6 7 7 8 namespace FarmatikoData.Models 8 9 { 9 public class HealthFacilities 10 public class HealthFacilities : BaseEntity 10 11 { 11 12 public HealthFacilities() { } -
FarmatikoData/Models/HealthcareWorkers.cs
r96108d8 ra8ccc2c 3 3 using System.ComponentModel.DataAnnotations; 4 4 using System.Text; 5 using FarmatikoData.Base; 5 6 using Microsoft.EntityFrameworkCore; 6 7 7 8 namespace FarmatikoData.Models 8 9 { 9 public class HealthcareWorkers 10 public class HealthcareWorkers : BaseEntity 10 11 { 11 12 public HealthcareWorkers() { } -
FarmatikoData/Models/Medicine.cs
r96108d8 ra8ccc2c 2 2 using System.Collections.Generic; 3 3 using System.Text; 4 using FarmatikoData.Base; 4 5 using Microsoft.EntityFrameworkCore; 5 6 6 7 namespace FarmatikoData.Models 7 8 { 8 public class Medicine 9 public class Medicine : BaseEntity 9 10 { 10 11 public Medicine() { } -
FarmatikoData/Models/MedicineList.cs
r96108d8 ra8ccc2c 1 1 using System.Collections.Generic; 2 using FarmatikoData.Base; 2 3 using FarmatikoData.Models; 3 4 using Microsoft.EntityFrameworkCore; … … 5 6 namespace FarmatikoData.Models 6 7 { 7 public class MedicineList 8 public class MedicineList : BaseEntity 8 9 { 9 10 public Medicine Medicines { get; set; } -
FarmatikoData/Models/Pandemic.cs
r96108d8 ra8ccc2c 2 2 using System.Collections.Generic; 3 3 using System.Text; 4 using FarmatikoData.Base; 4 5 using Microsoft.EntityFrameworkCore; 5 6 6 7 namespace FarmatikoData.Models 7 8 { 8 public class Pandemic 9 public class Pandemic : BaseEntity 9 10 { 10 11 public Pandemic() { } -
FarmatikoData/Models/Pharmacy.cs
r96108d8 ra8ccc2c 2 2 using System.Collections.Generic; 3 3 using System.Text; 4 using FarmatikoData.Base; 4 5 using Microsoft.EntityFrameworkCore; 5 6 6 7 namespace FarmatikoData.Models 7 8 { 8 public class Pharmacy 9 public class Pharmacy : BaseEntity 9 10 { 10 11 public Pharmacy() { } -
FarmatikoData/Models/PharmacyHead.cs
r96108d8 ra8ccc2c 2 2 using System.Collections.Generic; 3 3 using System.Text; 4 using FarmatikoData.Base; 4 5 using Microsoft.EntityFrameworkCore; 5 6 6 7 namespace FarmatikoData.Models 7 8 { 8 public class PharmacyHead 9 public class PharmacyHead : BaseEntity 9 10 { 10 11 public MedicineList PharmacyMedicines { get; set; }
Note:
See TracChangeset
for help on using the changeset viewer.