Exemple #1
0
        static void Main(string[] args)
        {
            var context = new FootballDBContext();

            context.Database.Initialize(true);

            //var goshoMomchetoLosho = context.Players.FirstOrDefault();
        }
 public ScoutsController(FootballDBContext context)
 {
     _context = context;
 }
 public OwnersController(FootballDBContext context)
 {
     _context = context;
 }
 public HeadStaffsController(FootballDBContext context)
 {
     _context = context;
 }
Exemple #5
0
 public AgentsController(FootballDBContext context)
 {
     _context = context;
 }