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

@ -50,6 +50,7 @@ namespace Yavsc.Models
builder.Entity<CircleMember>().HasKey(c=> new { MemberId = c.MemberId, CircleId = c.CircleId });
builder.Entity<DimissClicked>().HasKey(c=>new { uid = c.UserId, notid = c.NotificationId});
builder.Entity<HairTaintInstance>().HasKey(ti=>new { ti.TaintId, ti.PrestationId } );
builder.Entity<Link>().HasKey(l=>new { l.HRef, l.Method });
foreach (var et in builder.Model.GetEntityTypes()) {
if (et.ClrType.GetInterface("IBaseTrackedEntity")!=null)
@ -307,7 +308,9 @@ namespace Yavsc.Models
public DbSet<BrusherProfile> BrusherProfile { get; set; }
public DbSet<BankIdentity> BankIdentity { get; set; }
public DbSet<PaypalPayment> PaypalPayments { get; set; }
public DbSet<Link> Links { get; set; }
}
}