Esempio n. 1
0
 public AddS(int id, SBContext db)
 {
     InitializeComponent();
     this.id = id;
     this.db = db;
     UpdateListBoxes();
 }
Esempio n. 2
0
        public void AddSage(Sage item)
        {
            var context = new SBContext();

            context.Sages.Add(item);
            context.SaveChanges();
        }
Esempio n. 3
0
        public AddB(int id, SBContext db)
        {
            InitializeComponent();

            this.Id = id;
            this.db = db;
        }
Esempio n. 4
0
        public IEnumerable <Sage> GettAll()
        {
            var context = new SBContext();

            return(context.Sages.Include("Book").ToList());
        }