Пример #1
0
        public object GetService(Type serviceType)
        {
            if (serviceType == typeof(StudentsController))
            {
                var context    = new StudentsDbEntities();
                var repository = new DbStudentRepository(context);

                return(new StudentsController(repository));
            }
            else if (serviceType == typeof(SchoolsController))
            {
                var context    = new StudentsDbEntities();
                var repository = new DbSchoolRepository(context);

                return(new SchoolsController(repository));
            }
            else if (serviceType == typeof(MarksController))
            {
                var context    = new StudentsDbEntities();
                var repository = new DbMarkRepository(context);

                return(new MarksController(repository));
            }
            else
            {
                return(null);
            }
        }
Пример #2
0
        // POST api/Students
        public HttpResponseMessage PostStudent(SchoolModel schoolModel)
        {
            DbSchoolRepository schoolRepository = this.allRepositories.GetSchoolRepository();

            School school = new School()
            {
                Name     = schoolModel.Name,
                Location = schoolModel.Location
            };

            schoolRepository.Add(school);

            SchoolModel createdSchoolModel = new SchoolModel()
            {
                Id       = school.Id,
                Name     = school.Name,
                Location = school.Location
            };

            var response     = Request.CreateResponse <SchoolModel>(HttpStatusCode.Created, createdSchoolModel);
            var resourceLink = Url.Link("DefaultApi", new { id = createdSchoolModel.Id });

            response.Headers.Location = new Uri(resourceLink);
            return(response);
        }
Пример #3
0
        // GET api/Students
        public IEnumerable <SchoolModel> GetStudents()
        {
            DbSchoolRepository schoolRepository = this.allRepositories.GetSchoolRepository();

            var schoolEntities = schoolRepository.All();

            var schoolModels =
                from schEntity in schoolEntities
                select new SchoolModel()
            {
                Id       = schEntity.Id,
                Name     = schEntity.Name,
                Location = schEntity.Location
            };

            return(schoolModels.ToList());
        }
Пример #4
0
        // POST api/Students
        public HttpResponseMessage PostStudent(StudentModel studentModel)
        {
            if (studentModel == null)
            {
                var errResponse = Request.CreateErrorResponse(HttpStatusCode.BadRequest, "The supported student model cannot be null");
                throw new HttpResponseException(errResponse);
            }

            if (studentModel.SchoolId == 0)
            {
                var errResponse = Request.CreateErrorResponse(HttpStatusCode.BadRequest, "The school Id is not correct");
                throw new HttpResponseException(errResponse);
            }

            DbSchoolRepository schoolRepository = this.allRepositories.GetSchoolRepository();

            Student student = new Student()
            {
                FirstName = studentModel.FirstName,
                LastName  = studentModel.LastName,
                Age       = studentModel.Age,
                Grade     = studentModel.Grade,
                School    = schoolRepository.Get(studentModel.SchoolId)
            };

            DbStudentsRepository studentRepository = this.allRepositories.GetStudentsRepository();

            studentRepository.Add(student);

            StudentModel createdStudentModel = new StudentModel()
            {
                Id        = student.Id,
                FirstName = student.FirstName,
                LastName  = student.LastName,
                Age       = student.Age,
                Grade     = student.Grade,
                SchoolId  = student.School.Id
            };

            var response     = Request.CreateResponse <StudentModel>(HttpStatusCode.Created, createdStudentModel);
            var resourceLink = Url.Link("DefaultApi", new { id = createdStudentModel.Id });

            response.Headers.Location = new Uri(resourceLink);
            return(response);
        }
        public object GetService(Type serviceType)
        {
            if (serviceType == typeof(UniversityController))
            {
                var context = new SchoolContext();
                var repository = new DbSchoolRepository(context);

                return new UniversityController(repository);
            }
            else if (serviceType == typeof(StudentController))
            {
                var context = new SchoolContext();
                var repository = new DbStudentRepository(context);

                return new StudentController(repository);
            }
            else
            {
                return null;
            }
        }
Пример #6
0
        // GET api/Students/5
        public SchoolDetails GetStudent(int id)
        {
            DbSchoolRepository schoolRepository = this.allRepositories.GetSchoolRepository();

            var school        = schoolRepository.Get(id);
            var schoolDetails = new SchoolDetails()
            {
                Id       = school.Id,
                Name     = school.Name,
                Location = school.Location,
                Students = (from student in school.Students
                            select new StudentModel()
                {
                    Id = student.Id,
                    FirstName = student.FirstName,
                    LastName = student.LastName,
                    Age = student.Age,
                    Grade = student.Grade
                }).ToList()
            };

            return(schoolDetails);
        }
Пример #7
0
 public SchoolsController(IRepository <School> schoolRepository)
 {
     this.schoolRepository = (DbSchoolRepository)schoolRepository;
 }
 public SchoolsController(IRepository<School> schoolRepository)
 {
     this.schoolRepository = (DbSchoolRepository)schoolRepository;
 }
Пример #9
0
        protected override void Seed(SchoolManagementSystem.Domain.DbSchoolContext context)
        {
            //  This method will be called after migrating to the latest version.

            //  You can use the DbSet<T>.AddOrUpdate() helper extension method
            //  to avoid creating duplicate seed data. E.g.
            //
            //    context.People.AddOrUpdate(
            //      p => p.FullName,
            //      new Person { FullName = "Andrew Peters" },
            //      new Person { FullName = "Brice Lambson" },
            //      new Person { FullName = "Rowan Miller" }
            //    );
            DbSchoolRepository repository = new DbSchoolRepository();

            //repository.DeleteDatabase();

            repository.AddAdministrator(new Administrator {
                FirstName = "Director", Login = "******", Password = "******", Role = "Director"
            });
            repository.AddAdministrator(new Administrator {
                FirstName = "Principal", Login = "******", Password = "******", Role = "Secretary"
            });
            repository.AddAdministrator(new Administrator {
                FirstName = "Secretary", Login = "******", Password = "******", Role = "Secretary"
            });

            repository.AddStudent(new Student {
                PIN = "2010", FirstName = "Adam", LastName = "Sandler", Password = "******", Class_Id = 1, PhoneNumber = "0792893345", StreetAddress = "Umlazi AA 4", Nationality = "South African", Religion = "Muslim", Email = "*****@*****.**"
            });
            repository.AddStudent(new Student {
                PIN = "2011", FirstName = "Jim", LastName = "Carrey", Password = "******", Class_Id = 1, PhoneNumber = "0792893345", StreetAddress = "KwaMashu 86", Nationality = "South African", Religion = "Christian", Email = "*****@*****.**"
            });
            repository.AddStudent(new Student {
                PIN = "2012", FirstName = "Anne", LastName = "Hathaway", Password = "******", Class_Id = 1, PhoneNumber = "0792893345", StreetAddress = "Chestervile Road 77", Nationality = "South African", Religion = "Christian", Email = "*****@*****.**"
            });
            repository.AddStudent(new Student {
                PIN = "2013", FirstName = "Robert", LastName = "John Downey", Password = "******", Class_Id = 2, PhoneNumber = "0792893345", StreetAddress = "33 Gilbert Roard Everton", Nationality = "South African", Religion = "Rasta", Email = "*****@*****.**"
            });
            repository.AddStudent(new Student {
                PIN = "2014", FirstName = "Chris", LastName = "Evans", Password = "******", Class_Id = 3, PhoneNumber = "0792893345", StreetAddress = "Khunte khinte 66 Umhlanga Ridge", Nationality = "South African", Religion = "Christian", Email = "*****@*****.**"
            });
            repository.AddStudent(new Student {
                PIN = "2015", FirstName = "Chris", LastName = "Hemsworth", Password = "******", Class_Id = 4, PhoneNumber = "0792893345", StreetAddress = "Zukhare Mirane 77 Biltong", Nationality = "South African", Religion = "Hindu", Email = "*****@*****.**"
            });


            repository.AddClass(new Class {
                Name = "12-A"
            });
            repository.AddClass(new Class {
                Name = "12-B"
            });
            repository.AddClass(new Class {
                Name = "11-A"
            });
            repository.AddClass(new Class {
                Name = "11-B"
            });

            List <Class> classes         = repository.Classes.ToList();
            List <Class> classesCristina = repository.Classes.Take(2).ToList();

            repository.AddTeacher(new Teacher {
                PIN = "2021", FirstName = "Emma", LastName = "Watson", Password = "******", Discipline_Id = 1, EducationalGrade = "USM Biology faculty", ClassesToStudy = classes
            });
            repository.AddTeacher(new Teacher {
                PIN = "2022", FirstName = "Cristina", LastName = "Purice", Password = "******", Discipline_Id = 3, EducationalGrade = "USM Mathematic and Informatics faculty", ClassesToStudy = classesCristina
            });

            context.States.AddOrUpdate(new State {
                Description = "Class Rep"
            });

            context.Votings.AddOrUpdate(new Voting
            {
                Description        = "2016 Class Rep Elections",
                IsEnabledBlankVote = true,
                StateId            = 1,
                Remarks            = "Together we can make a difference",
                IsForAllUsers      = true,
                DateTimeStart      = DateTime.Now,
                DateTimeEnd        = DateTime.Today,
            });

            repository.AddDiscipline(new Discipline {
                Subject = "Biology"
            });
            repository.AddDiscipline(new Discipline {
                Subject = "History"
            });
            repository.AddDiscipline(new Discipline {
                Subject = "Mathematic"
            });
            repository.AddDiscipline(new Discipline {
                Subject = "Chemistry"
            });
            repository.AddDiscipline(new Discipline {
                Subject = "Physics"
            });

            //context.Candidates.AddOrUpdate(new Candidate { StudentID = 1, VotingId = 1, QuantityVotes = 20 });
            //context.Candidates.AddOrUpdate(new Candidate { StudentID = 2, VotingId = 1, QuantityVotes = 19 });
            //context.Candidates.AddOrUpdate(new Candidate { StudentID = 3, VotingId = 1, QuantityVotes = 12 });
            //context.Candidates.AddOrUpdate(new Candidate { StudentID = 4, VotingId = 1, QuantityVotes = 10 });
            //context.Candidates.AddOrUpdate(new Candidate { StudentID = 5, VotingId = 1, QuantityVotes = 21 });

            //Countries
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Afghanistan"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Albania"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Algeria"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "AmericanSamoa"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Andorra"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Angola"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Anguilla"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Antarctica"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "AntiguaAnd Barbuda"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Argentina"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Armenia"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Aruba"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Australia"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Austria"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Azerbaijan"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Bahamas"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Bahrain"
            });
            context.Countries.AddOrUpdate(new Country {
                CountryCode = "Bangladesh"
            });

            #region Marks
            repository.AddMark(new Mark
            {
                Student_PIN   = "2010",
                Date          = new DateTime(2016, 5, 1),
                Teacher_PIN   = "2011",
                Discipline_Id = 1,
                Value         = 10
            });
            repository.AddMark(new Mark
            {
                Student_PIN   = "2010",
                Date          = new DateTime(2016, 5, 4),
                Teacher_PIN   = "2011",
                Discipline_Id = 2,
                Value         = -1
            });
            repository.AddMark(new Mark
            {
                Student_PIN   = "2010",
                Date          = new DateTime(2016, 5, 11),
                Teacher_PIN   = "2011",
                Discipline_Id = 2,
                Value         = 9
            });
            repository.AddMark(new Mark
            {
                Student_PIN   = "2010",
                Date          = new DateTime(2016, 5, 15),
                Teacher_PIN   = "2011",
                Discipline_Id = 3,
                Value         = 9
            });
            repository.AddMark(new Mark
            {
                Student_PIN   = "2010",
                Date          = new DateTime(2016, 5, 21),
                Teacher_PIN   = "2011",
                Discipline_Id = 1,
                Value         = 6
            });
            repository.AddMark(new Mark
            {
                Student_PIN   = "2010",
                Date          = new DateTime(2016, 5, 28),
                Teacher_PIN   = "2011",
                Discipline_Id = 4,
                Value         = -1
            });
            #endregion
        }