diff --git a/Src/Infrastructure/PaintedProsthetics.Persistence/Amputee.cs b/Src/Infrastructure/PaintedProsthetics.Persistence/Amputee.cs new file mode 100644 index 0000000..ee61e78 --- /dev/null +++ b/Src/Infrastructure/PaintedProsthetics.Persistence/Amputee.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace PaintedProsthetics.Persistence +{ + public class Amputee + { + } +} diff --git a/Src/Infrastructure/PaintedProsthetics.Persistence/ApplicationContext.cs b/Src/Infrastructure/PaintedProsthetics.Persistence/ApplicationContext.cs new file mode 100644 index 0000000..34dca21 --- /dev/null +++ b/Src/Infrastructure/PaintedProsthetics.Persistence/ApplicationContext.cs @@ -0,0 +1,24 @@ +using Microsoft.EntityFrameworkCore; + +namespace PaintedProsthetics.Persistence +{ + public class ApplicationContext : DbContext + { + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) + { + base.OnConfiguring(optionsBuilder); + } + + + public DbSet Amputees { get; set; } + public DbSet Users { get; set; } + public DbSet ProstheticRequests { get; set; } + public DbSet Artwork { get; set; } + public DbSet Artists { get; set; } + public DbSet Portfolios { get; set; } + public DbSet Donations { get; set; } + public DbSet ArtistRequests { get; set; } + public DbSet Feedback { get; set; } + + } +} diff --git a/Src/Infrastructure/PaintedProsthetics.Persistence/Artist.cs b/Src/Infrastructure/PaintedProsthetics.Persistence/Artist.cs new file mode 100644 index 0000000..5f50485 --- /dev/null +++ b/Src/Infrastructure/PaintedProsthetics.Persistence/Artist.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace PaintedProsthetics.Persistence +{ + public class Artist + { + } +} diff --git a/Src/Infrastructure/PaintedProsthetics.Persistence/ArtistRequest.cs b/Src/Infrastructure/PaintedProsthetics.Persistence/ArtistRequest.cs new file mode 100644 index 0000000..d513f0d --- /dev/null +++ b/Src/Infrastructure/PaintedProsthetics.Persistence/ArtistRequest.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace PaintedProsthetics.Persistence +{ + public class ArtistRequest + { + } +} diff --git a/Src/Infrastructure/PaintedProsthetics.Persistence/Artwork.cs b/Src/Infrastructure/PaintedProsthetics.Persistence/Artwork.cs new file mode 100644 index 0000000..d1e3884 --- /dev/null +++ b/Src/Infrastructure/PaintedProsthetics.Persistence/Artwork.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace PaintedProsthetics.Persistence +{ + public class Artwork + { + } +} diff --git a/Src/Infrastructure/PaintedProsthetics.Persistence/Donation.cs b/Src/Infrastructure/PaintedProsthetics.Persistence/Donation.cs new file mode 100644 index 0000000..cf73ee3 --- /dev/null +++ b/Src/Infrastructure/PaintedProsthetics.Persistence/Donation.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace PaintedProsthetics.Persistence +{ + public class Donation + { + } +} diff --git a/Src/Infrastructure/PaintedProsthetics.Persistence/Feedback.cs b/Src/Infrastructure/PaintedProsthetics.Persistence/Feedback.cs new file mode 100644 index 0000000..06234c5 --- /dev/null +++ b/Src/Infrastructure/PaintedProsthetics.Persistence/Feedback.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace PaintedProsthetics.Persistence +{ + public class Feedback + { + } +} diff --git a/Src/Infrastructure/PaintedProsthetics.Persistence/Foo.cs b/Src/Infrastructure/PaintedProsthetics.Persistence/Foo.cs deleted file mode 100644 index 396f8a1..0000000 --- a/Src/Infrastructure/PaintedProsthetics.Persistence/Foo.cs +++ /dev/null @@ -1,8 +0,0 @@ -namespace PaintedProsthetics.Persistence -{ - public class Foo - - { - public string Bar() => "Bar"; - } -} \ No newline at end of file diff --git a/Src/Infrastructure/PaintedProsthetics.Persistence/Portfolio.cs b/Src/Infrastructure/PaintedProsthetics.Persistence/Portfolio.cs new file mode 100644 index 0000000..1ef0a98 --- /dev/null +++ b/Src/Infrastructure/PaintedProsthetics.Persistence/Portfolio.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace PaintedProsthetics.Persistence +{ + public class Portfolio + { + } +} diff --git a/Src/Infrastructure/PaintedProsthetics.Persistence/ProstheticRequest.cs b/Src/Infrastructure/PaintedProsthetics.Persistence/ProstheticRequest.cs new file mode 100644 index 0000000..e16f245 --- /dev/null +++ b/Src/Infrastructure/PaintedProsthetics.Persistence/ProstheticRequest.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace PaintedProsthetics.Persistence +{ + public class ProstheticRequest + { + } +} diff --git a/Src/Infrastructure/PaintedProsthetics.Persistence/User.cs b/Src/Infrastructure/PaintedProsthetics.Persistence/User.cs new file mode 100644 index 0000000..cd87474 --- /dev/null +++ b/Src/Infrastructure/PaintedProsthetics.Persistence/User.cs @@ -0,0 +1,10 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace PaintedProsthetics.Persistence +{ + public class User + { + } +}