Aprouver le paiement
This commit is contained in:
@ -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; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user