예제 #1
0
        public IEnumerable<Core.Entities.Group> GetGroups()
        {
            List<Core.Entities.Group> result = 
                new List<Core.Entities.Group>();

            using (StudentsModel context = new StudentsModel())
            {
                foreach(var item in context.Groups)
                {
                    result.Add(new Core.Entities.Group(item.Id, item.Name));
                }
            }

            return result;
        }
예제 #2
0
        public void Edit(Core.Entities.Group group)
        {
            using (StudentsModel context = new StudentsModel())
            {
                var editingGroup = context
                    .Groups
                    .FirstOrDefault(x => x.Id == group.Id);

                if (editingGroup == null)
                    throw new ArgumentException("group is not found");

                editingGroup.Name = group.Name;
                context.SaveChanges();
            }
        }
예제 #3
0
        public void Delete(int id)
        {
            using (StudentsModel context = new StudentsModel())
            {
                var deletingGroup = context
                    .Groups
                    .FirstOrDefault(x => x.Id == id);

                if (deletingGroup == null)
                    throw new ArgumentException("group is not found");

                context.Groups.Remove(deletingGroup);
                context.SaveChanges();
            }
        }
예제 #4
0
        public int Add(Core.Entities.Group group)
        {
            var newGroup = new Group()
            {
                Name = group.Name
            };

            using (StudentsModel context = new StudentsModel())
            {
                context.Groups.Add(newGroup);
                context.SaveChanges();
            }

            return newGroup.Id;
        }