Aprouver le paiement

This commit is contained in:
2017-05-15 13:36:14 +02:00
parent 48bd22ca72
commit b518a2c647
22 changed files with 4610 additions and 41 deletions

View File

@ -1,6 +1,8 @@
using System;
using Microsoft.Data.Entity;
using Microsoft.Data.Entity.Infrastructure;
using Microsoft.Data.Entity.Metadata;
using Microsoft.Data.Entity.Migrations;
using Yavsc.Models;
namespace Yavsc.Migrations
@ -870,8 +872,9 @@ namespace Yavsc.Migrations
b.Property<string>("OrderReference");
b.Property<string>("PaypalPayerId")
.IsRequired();
b.Property<string>("PaypalPayerId");
b.Property<string>("State");
b.Property<string>("UserCreated");
@ -914,6 +917,19 @@ namespace Yavsc.Migrations
b.HasKey("OwnerId", "UserId");
});
modelBuilder.Entity("Yavsc.Models.Relationship.Link", b =>
{
b.Property<string>("HRef");
b.Property<string>("Method");
b.Property<string>("PaypalPaymentPaypalPaymentId");
b.Property<string>("Rel");
b.HasKey("HRef", "Method");
});
modelBuilder.Entity("Yavsc.Models.Relationship.Location", b =>
{
b.Property<long>("Id")
@ -1411,6 +1427,13 @@ namespace Yavsc.Migrations
.HasForeignKey("ApplicationUserId");
});
modelBuilder.Entity("Yavsc.Models.Relationship.Link", b =>
{
b.HasOne("Yavsc.Models.Payment.PaypalPayment")
.WithMany()
.HasForeignKey("PaypalPaymentPaypalPaymentId");
});
modelBuilder.Entity("Yavsc.Models.Relationship.PostTag", b =>
{
b.HasOne("Yavsc.Models.Blog")