Exemplo n.º 1
0
 public bool Delete(GovItemVM item)
 {
     var db = new GuvnerContext();
     var model = db.GovItems.FirstOrDefault(gi => gi.ID == item.ID);
     db.GovItems.Remove(model);
     return db.SaveChanges() != 0;
 }
Exemplo n.º 2
0
        private static void test()
        {
            GuvnerContext db = new GuvnerContext();
            GovItem gi = new GovItem();
            gi.Text = "Human Resources";
            gi.GovItemType = (int)GovItemType.Focus;
            //gi.SomethingElse = "Whatever!";

            db.GovItems.Add(gi);
            db.SaveChanges();
        }
Exemplo n.º 3
0
 public IEnumerable<GovItemVM> GetByType(int type)
 {
     var db = new GuvnerContext();
     var items = db.GovItems.Where(gi => gi.GovItemType == type).ToArray();
     if (items != null)
     {
         var vm = Mapper.Map<GovItem[], GovItemVM[]>(items);
         //vm.ParentList = GetParentAssociations((GovItemType)items.GovItemType);
         //vm.ChildList = GetChildAssociations((GovItemType)items.GovItemType);
         return vm;
     }
     return null;
 }
Exemplo n.º 4
0
 public GovItemVM GetById(int id)
 {
     var db = new GuvnerContext();
     var item = db.GovItems.Include("Parent").Include("Children").FirstOrDefault(gi => gi.ID == id);
     if (item != null)
     {
         var vm = Mapper.Map(item, new GovItemVM());
         vm.ParentList = GetParentAssociations((GovItemType)item.GovItemType);
         vm.ChildList = GetChildAssociations((GovItemType)item.GovItemType);
         return vm;
     }
     return null;
 }
Exemplo n.º 5
0
 public bool Save(GovItemVM item)
 {
     var db = new GuvnerContext();
     if (item.ID == 0)
     {
         var m = Mapper.Map<GovItemVM, GovItem>(item);
         db.GovItems.Add(m);
     }
     else
     {
         var model = db.GovItems.FirstOrDefault(gi => gi.ID == item.ID);
         Mapper.Map<GovItemVM, GovItem>(item, model);
     }
     return db.SaveChanges() != 0;
 }
Exemplo n.º 6
0
 private List<GovItem> GetGovItemsByType(GovItemType type)
 {
     var db = new GuvnerContext();
     return db.GovItems.Where(g => g.GovItemType == (int)type).ToList();
 }