principalement du format de code

This commit is contained in:
Paul Schneider 2020-09-12 01:11:30 +01:00
commit ff1444d664
87 changed files with 510 additions and 550 deletions

View file

@ -34,19 +34,19 @@ namespace Yavsc.Models.HairCut
public string Sender { get; set; }
HairCutQuery query;
readonly HairCutQuery query;
private string invoiceId;
private string payerName;
private string phone;
private string payerEmail;
private string amount;
private HairCutGenders gender;
private string date;
private string lieu;
private string clientFinal;
private string token;
private string payerId;
private readonly string invoiceId;
private readonly string payerName;
private readonly string phone;
private readonly string payerEmail;
private readonly string amount;
private readonly HairCutGenders gender;
private readonly string date;
private readonly string lieu;
private readonly string clientFinal;
private readonly string token;
private readonly string payerId;
public string CreateBody()
{
@ -73,4 +73,4 @@ Le client final: {clientFinal}
";
}
}
}
}

View file

@ -140,7 +140,7 @@ Prestation.Gender == HairCutGenders.Women ?
bill.Add(new CommandLine
{
Name = name,
Description = name = name + shorthairsuffix,
Description = name + shorthairsuffix,
UnitaryCost = multicolor ? SelectedProfile.ShortMultiColorPrice : SelectedProfile.ShortColorPrice
});

View file

@ -36,6 +36,5 @@ namespace Yavsc.Models.Haircut
private set;
}
HairCutQuery Data { get; set; }
}
}