public bool Post <T>(T item) where T : class
 {
     _db.Set <T>().Add(item);
     return(_db.SaveChanges() == 1);
 }