public PatientController(IPatientDomain patientDomain) : base("/patient")
        {
            Get["/"]     = parameters => new JsonResponse(patientDomain.GetPatients(), new DefaultJsonSerializer());
            Get["/{id}"] = parameters => new JsonResponse(patientDomain.GetPatient(parameters.id), new DefaultJsonSerializer());
            Post["/"]    = parameters =>
            {
                var patientModel = this.Bind <PatientModel>();
                var response     = patientModel.ValidateModel();
                if (response != null)
                {
                    return(response);
                }

                var patient = new Patient
                {
                    Age  = patientModel.Age,
                    Name = patientModel.Name
                };

                patientDomain.CreatePatient(patient);

                string url = string.Format("{0}/{1}", this.Context.Request.Url, patient.Id);

                return(new Response()
                {
                    StatusCode = HttpStatusCode.Accepted
                }.WithHeader("Location", url));
            };
        }
示例#2
0
 public SeedDataDomain()
 {
     _appointmentsDomain = new AppointmentsDomain(new AppointmentsRepository());
     _patientDomain      = new PatientDomain(new PatientsRepository());
     _providerDomain     = new ProviderDomain(new ProvidersRepository());
     _serviceDomain      = new ServiceDomain(new ServicesRepository());
 }
        public AppointmentController(IAppointmentsDomain appointmentsDomain, IPatientDomain patientDomain, IProviderDomain providerDomain, IServiceDomain serviceDomain) : base("/appointments")
        {
            Get["/"]              = parameters => new JsonResponse(appointmentsDomain.GetAppointments(), new DefaultJsonSerializer());
            Get["/{id}"]          = parameters => new JsonResponse(appointmentsDomain.GetAppointment(parameters.id), new DefaultJsonSerializer());
            Get["/patient/{id}"]  = parameters => new JsonResponse(appointmentsDomain.GetPatientAppointments(parameters.id), new DefaultJsonSerializer());
            Get["/provider/{id}"] = parameters => new JsonResponse(appointmentsDomain.GetProviderAppointments(parameters.id), new DefaultJsonSerializer());
            Post["/"]             = parameters =>
            {
                var appointmentModel = this.Bind <AppointmentModel>();
                var response         = appointmentModel.ValidateModel();
                if (response != null)
                {
                    return(response);
                }

                var appointment = new Appointment
                {
                    Patient                  = patientDomain.GetPatient(appointmentModel.PatientId),
                    Provider                 = providerDomain.GetProvider(appointmentModel.ProviderId),
                    Service                  = serviceDomain.GetService(appointmentModel.ServiceId),
                    ReasonForVisit           = appointmentModel.ReasonForVisit,
                    RequestedAppointmentDate = DateTime.Parse(appointmentModel.RequestedAppointmentDate)
                };

                try
                {
                    var validationResponse = ValidateInputModel(appointment);
                    if (validationResponse != null)
                    {
                        return(validationResponse);
                    }
                    appointmentsDomain.SetAppointment(appointment);
                }
                catch (ApplicationException ex)
                {
                    return(new Response()
                    {
                        StatusCode = HttpStatusCode.BadRequest
                    }.WithHeader("Error", ex.Message));
                }


                string url = string.Format("{0}/{1}", this.Context.Request.Url, appointment.Id);

                return(new Response()
                {
                    StatusCode = HttpStatusCode.Accepted
                }.WithHeader("Location", url));
            };
        }