public StatistiquesModel GetVilleStat(string UID, string date) { // code to get city statstics with date VilleModel v = new VilleModel(); return(v.ListeStatistiques(UID, date)); }
public List <StatistiquesModel> GetVilleStatAll(string UID) { // code to get the region statistics VilleModel v = new VilleModel(); return(v.GetVilleStatistiquesForDashboard(UID)); }
public List <StatistiquesModel> GetVilleStat(string UID) { // code to get city statstics VilleModel v = new VilleModel(); return(v.ListeStatistiques(UID)); }