Modification classe
continuous-integration/drone/push Build is failing Details

pull/138/head
Hugo LIVET 2 years ago
parent 014fa79013
commit 9f434806f1

@ -20,15 +20,17 @@ namespace Model
public MethodePayement ModePayement { get; private set; } public MethodePayement ModePayement { get; private set; }
public bool IsDebit { get; private set; } public bool IsDebit { get; private set; }
public TagOperation Tag { get; private set; }
[JsonConstructor] [JsonConstructor]
public Echeance(string intituleOperation, double montant, DateTime dateOperation, MethodePayement modePayement, bool isDebit = true) public Echeance(string intituleOperation, double montant, DateTime dateOperation, MethodePayement modePayement, TagOperation tag, bool isDebit = true)
{ {
IntituleOperation = intituleOperation; IntituleOperation = intituleOperation;
Montant = montant; Montant = montant;
DateOperation = dateOperation; DateOperation = dateOperation;
ModePayement = modePayement; ModePayement = modePayement;
IsDebit = isDebit; IsDebit = isDebit;
Tag = tag;
} }
public override string ToString() public override string ToString()

@ -33,14 +33,17 @@ namespace Model
public bool IsDebit { get; private set; } public bool IsDebit { get; private set; }
public TagOperation Tag { get; private set; }
[JsonConstructor] [JsonConstructor]
public Operation(string intituleOperation, double montant, DateTime dateOperation, MethodePayement modePayement, bool isDebit=true) public Operation(string intituleOperation, double montant, DateTime dateOperation, MethodePayement modePayement, TagOperation tag, bool isDebit=true)
{ {
IntituleOperation = intituleOperation; IntituleOperation = intituleOperation;
Montant = montant; Montant = montant;
DateOperation = dateOperation; DateOperation = dateOperation;
ModePayement = modePayement; ModePayement = modePayement;
IsDebit = isDebit; IsDebit = isDebit;
Tag = tag;
} }
void OnPropertyChanged(string propertyName) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); void OnPropertyChanged(string propertyName) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));

@ -1,4 +1,5 @@
using Newtonsoft.Json; using Microsoft.Maui.Controls;
using Newtonsoft.Json;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel; using System.ComponentModel;
@ -17,26 +18,25 @@ namespace Model
public DateTime DateOperation { get; private set; } public DateTime DateOperation { get; private set; }
public int Frequance { get; private set; }//en mois ?
public MethodePayement ModePayement { get; private set; } public MethodePayement ModePayement { get; private set; }
public bool IsDebit { get; private set; } public bool IsDebit { get; private set; }
public TagOperation Tag { get; private set; }
[JsonConstructor] [JsonConstructor]
public Planification(string intituleOperation, double montant, DateTime dateOperation, int frequance, MethodePayement modePayement, bool isDebit = true) public Planification(string intituleOperation, double montant, DateTime dateOperation, MethodePayement modePayement, TagOperation tag, bool isDebit = true)
{ {
IntituleOperation = intituleOperation; IntituleOperation = intituleOperation;
Montant = montant; Montant = montant;
DateOperation = dateOperation; DateOperation = dateOperation;
Frequance = frequance;
ModePayement = modePayement; ModePayement = modePayement;
IsDebit = isDebit; IsDebit = isDebit;
Tag = tag;
} }
public override string ToString() public override string ToString()
{ {
return IntituleOperation + " " + DateOperation + " " + Montant + " " + ModePayement + " " + IsDebit + " " + Frequance; return IntituleOperation + " " + DateOperation + " " + Montant + " " + ModePayement + " " + IsDebit + " " + Tag;
} }
} }
} }

@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
public enum TagOperation
{
Alimentaire,
Carburant,
Habitation,
Energie,
Telephonie,
Loisir,
Restauration,
Divers,
Transport,
Transaction,
Santé
}
}
Loading…
Cancel
Save