sends a first PayPal Api call

This commit is contained in:
2017-05-12 16:29:47 +02:00
parent fd0b08d74a
commit 48bd22ca72
13 changed files with 2302 additions and 44 deletions

View File

@ -1,8 +1,6 @@
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
@ -560,6 +558,8 @@ namespace Yavsc.Migrations
b.Property<decimal?>("Previsional");
b.Property<string>("SelectedProfileUserId");
b.Property<int>("Status");
b.Property<string>("UserCreated");
@ -1271,6 +1271,10 @@ namespace Yavsc.Migrations
b.HasOne("Yavsc.Models.Haircut.HairPrestation")
.WithMany()
.HasForeignKey("PrestationId");
b.HasOne("Yavsc.Models.Haircut.BrusherProfile")
.WithMany()
.HasForeignKey("SelectedProfileUserId");
});
modelBuilder.Entity("Yavsc.Models.Haircut.HairMultiCutQuery", b =>