billing
This commit is contained in:
parent
7b9078c6da
commit
42c08797e3
44 changed files with 2798 additions and 350 deletions
|
|
@ -7,15 +7,18 @@ namespace Yavsc.Models.Payment {
|
|||
|
||||
public class PaypalPayment : IBaseTrackedEntity
|
||||
{
|
||||
[Required,Key]
|
||||
public string PaypalPaymentId { get; set; }
|
||||
|
||||
[Required]
|
||||
public string ExecutorId { get; set; }
|
||||
public string ExecutorId { get; set; }
|
||||
[ForeignKey("ExecutorId")]
|
||||
public virtual ApplicationUser Executor { get; set; }
|
||||
[Key,Required]
|
||||
string PaypalPayerId { get; set; }
|
||||
|
||||
[Required]
|
||||
string PaypalPaymentId { get; set; }
|
||||
string orderReference { get; set; }
|
||||
public string PaypalPayerId { get; set; }
|
||||
|
||||
public string OrderReference { get; set; }
|
||||
[Display(Name="Date de création")]
|
||||
public DateTime DateCreated
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue