You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BowlingScoreApp/Sources/BowlingStub/StubManager.cs

29 lines
557 B

using BowlingLib.Model;
using Business;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BowlingStub
{
internal class StubManager
{
private List<Joueur> lesjoueurs = new List<Joueur>();
private List<Partie> parties = new List<Partie>();
private List<Equipe> equipes = new List<Equipe>();
public void Add(Manager data)
{
}
public void Delete(Manager data)
{
}
}
}