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/BowlingMaping/DbDataManager.cs

39 lines
839 B

using BowlingEF.Context;
using Business;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BowlingMaping
{
//public class DbDataManager : IDataManager
//{
// private readonly BowlingContext context;
// public DbDataManager(BowlingContext context)
// {
// this.context = context;
// }
// public void Add(Manager data)
// {
// context.Add(data);
// context.SaveChanges();
// }
// public void Delete(Manager data)
// {
// context.Remove(data);
// context.SaveChanges();
// }
// public void Update(Manager data)
// {
// context.Update(data);
// context.SaveChanges();
// }
//}
}