Beispiel #1
0
        public void Constructor_when_give_correctly_repository()
        {
            ISpecializationService specializationService = new SpecializationService(specializationRepository);


            Assert.IsType <SpecializationService>(specializationService);
        }
 public void Add()
 {
     if (!IsEdit)
     {
         SelectedEquipment   = ActualEquipment.ToList();
         SelectedPermissions = ActualPermissions.ToList();
         string x = SpecializationService.Add(Name, Description, SelectedEquipment, SelectedPermissions);
         if (x == null)
         {
             TryClose();
         }
         else
         {
             Error = x;
         }
     }
     else
     {
         toEdit.Name         = Name;
         toEdit.Description  = Description;
         SelectedEquipment   = ActualEquipment.ToList();
         SelectedPermissions = ActualPermissions.ToList();
         string x = SpecializationService.Edit(toEdit, SelectedEquipment, SelectedPermissions);
         if (x == null)
         {
             TryClose();
         }
         else
         {
             Error = x;
         }
     }
 }
 protected override void OnInitialized()
 {
     people          = PersonService.GetPersonIdAndNames();
     specializations = SpecializationService.GetSpecializationIdAndNames();
     createDto       = new DoctorCreateDto(DoctorService, PersonService, SpecializationService, PasswordEncryptionUtil);
     editContext     = new EditContext(createDto);
     base.OnInitialized();
 }
        protected override void OnInitialized()
        {
            specializationGetDto  = SpecializationService.GetById(Id);
            specializationEditDto = Mapper.Map <SpecializationEditDto>(specializationGetDto);
            specializationEditDto.SetSpecializationService(SpecializationService);

            editContext = new EditContext(specializationEditDto);
            base.OnInitializedAsync();
        }
Beispiel #5
0
 public AddEmployeeViewModel()
 {
     IsEdit           = false;
     ButtonLabel      = "Add";
     Ranks            = RankService.GetAllBindableCollection();
     Specializations  = SpecializationService.GetAllBindableCollection();
     DateOfEmployment = DateTime.Now;
     NotifyOfPropertyChange(() => DateOfEmployment);
 }
 public void Delete(SpecializationDTO specialization)
 {
     IWindowManager manager = new WindowManager();
     DeleteConfirmationViewModel modify = new DeleteConfirmationViewModel();
     bool? showDialogResult = manager.ShowDialog(modify, null, null);
     if (showDialogResult != null && showDialogResult == true)
     {
         SpecializationService.Delete(specialization);
     }
     Reload();
 }
Beispiel #7
0
        public AddEmployeeViewModel(EmployeeDTO employee)
        {
            IsEdit          = true;
            ButtonLabel     = "Edit";
            Ranks           = RankService.GetAllBindableCollection();
            Specializations = SpecializationService.GetAllBindableCollection();
            int i = 0;

            if (employee.RankId != null)
            {
                while (ActualRank == null)
                {
                    if (Ranks[i].Id == employee.RankId)
                    {
                        ActualRank = i;
                        break;
                    }
                    else
                    {
                        i++;
                    }
                }
            }

            if (employee.SpecializationId != null)
            {
                int j = 0;
                while (ActualSpecialization == null)
                {
                    if (Specializations[j].Id == employee.SpecializationId)
                    {
                        ActualSpecialization = j;
                        break;
                    }
                    else
                    {
                        j++;
                    }
                }
            }

            this.toEdit      = employee;
            NationalId       = employee.NationalId;
            FirstName        = employee.FirstName;
            LastName         = employee.LastName;
            Salary           = employee.Salary;
            DateOfEmployment = employee.DateOfEmployment;
            NotifyOfPropertyChange(() => NationalId);
            NotifyOfPropertyChange(() => FirstName);
            NotifyOfPropertyChange(() => LastName);
            NotifyOfPropertyChange(() => Salary);
            NotifyOfPropertyChange(() => DateOfEmployment);
        }
Beispiel #8
0
        public void DeleteSpecializationTest(int?id)
        {
            //Arrange
            var mock = new Mock <IUnitOfWork>();

            mock.Setup(a => a.Specializations.Get(-1)).Returns((Specialization)null);

            //Act
            var service = new SpecializationService(mock.Object);

            //Assert
            Assert.Throws <ValidationException>(() => service.DeleteSpecialization(id));
        }
Beispiel #9
0
        public void GetAllSpecializationsTest()
        {
            //Arrange
            var mock = new Mock <IUnitOfWork>();

            mock.Setup(a => a.Specializations.GetAll()).Returns(It.IsAny <List <Specialization> >);

            //Act
            var service = new SpecializationService(mock.Object);

            var list = new List <SpecializationDto>();

            Assert.AreSame(list.GetType(), service.GetSpecializations().GetType());
        }
Beispiel #10
0
        public void CreateSpecializationValidationTest(string name, string description)
        {
            //Arrange
            var mock = new Mock <IUnitOfWork>();

            mock.Setup(a => a.Specializations.Create(It.IsAny <Specialization>()));

            //Act
            var service = new SpecializationService(mock.Object);

            //Assert
            Assert.Throws <ValidationException>(() => service.Create(
                                                    new SpecializationDto {
                Name = name, Description = description
            }));
        }
Beispiel #11
0
 public SpecializationController(SpecializationService specializationService)
 {
     this.specializationService = specializationService;
 }
 protected override void OnInitialized() => Specializations = SpecializationService.GetAll();
        public App()
        {
            var medicationRepository           = new MedicationRepository(new Stream <Medication>(MEDICATION_FILE));
            var diagnosisRepository            = new DiagnosisRepository(new Stream <Diagnosis>(DIAGNOSIS_FILE));
            var allergenRepository             = new AllergensRepository(new Stream <Allergens>(ALLERGEN_FILE));
            var categoryRepository             = new MedicationCategoryRepository(new Stream <MedicationCategory>(CATEGORY_FILE));
            var symptomsRepository             = new SymptomsRepository(new Stream <Symptoms>(SYMPTOMS_FILE));
            var ingredientsRepository          = new MedicationIngredientRepository(new Stream <MedicationIngredient>(INGREDIENTS_FILE));
            var specializationRepository       = new SpecializationRepository(new Stream <Specialization>(SPECIALIZATION_FILE));
            var cityRepository                 = new CityRepository(new Stream <City>(CITY_FILE));
            var addressRepository              = new AddressRepository(new Stream <Address>(ADDRESS_FILE), cityRepository);
            var stateRepository                = new StateRepository(new Stream <State>(STATE_FILE));
            var hospitalRepository             = new HospitalRepository(new Stream <Hospital>(HOSPITAL_FILE));
            var departmentRepository           = new DepartmentRepository(hospitalRepository, new Stream <Department>(DEPARTMENT_FILE));
            var roomRepository                 = new RoomRepository(departmentRepository, new Stream <Room>(ROOM_FILE));
            var userRepository                 = new UserRepository(new Stream <RegisteredUser>(USER_FILE), cityRepository, addressRepository, departmentRepository, roomRepository);
            var renovationRepository           = new RenovationRepository(roomRepository, new Stream <Renovation>(RENOVATION_FILE));
            var medicalRecordRepository        = new MedicalRecordRepository(new Stream <MedicalRecord>(RECORD_FILE), diagnosisRepository, medicationRepository, userRepository);
            var bedRepository                  = new BedRepository(roomRepository, medicalRecordRepository, new Stream <Bed>(BED_FILE));
            var equipmentTypeRepository        = new EquipmentTypeRepository(new Stream <EquipmentType>(EQUIPMENT_TYPE_FILE));
            var equipmentRepository            = new HospitalEquipmentRepository(new Stream <HospitalEquipment>(EQUIPMENT_FILE));
            var treatmentsRepository           = new TreatmentRepository(medicationRepository, departmentRepository, new Stream <Treatment>(TREATMENTS_FILE));
            var examinationSurgeryRepository   = new ExaminationSurgeryRepository(treatmentsRepository, medicalRecordRepository, userRepository, new Stream <ExaminationSurgery>(EXAMINATION_SURGERY_FILE));
            var emergencyRequestRepository     = new EmergencyRequestRepository(medicalRecordRepository, new Stream <EmergencyRequest>(EMERGENCY_REQUEST_FILE));
            var vaccinesRepository             = new VaccinesRepository(new Stream <Vaccines>(VACCINES_FILE));
            var notificationRepository         = new NotificationRepository(userRepository, new Stream <Notification>(NOTIFICATION_FILE));
            var articleRepository              = new ArticleRepository(userRepository, new Stream <Article>(ARTICLE_FILE));
            var questionRepository             = new QuestionRepository(userRepository, new Stream <Question>(QUESTIONS_FILE));
            var doctorReviewsRepository        = new DoctorReviewRepository(userRepository, new Stream <DoctorReview>(DOCTOR_REVIEWS_FILE));
            var feedbackRepository             = new FeedbackRepository(userRepository, new Stream <Feedback>(FEEDBACK_FILE));
            var surveyRepository               = new SurveyRepository(userRepository, new Stream <Survey>(SURVEY_FILE));
            var appointmentsRepository         = new AppointmentRepository(userRepository, medicalRecordRepository, roomRepository, new Stream <Appointment>(APPOINTMENTS_FILE));
            var workDayRepository              = new WorkDayRepository(userRepository, new Stream <WorkDay>(WORK_DAY_FILE));
            var vacationRequestRepository      = new VacationRequestRepository(userRepository, new Stream <VacationRequest>(VACATION_REQUEST_FILE));
            var reportsRepository              = new ReportRepository(new Stream <Report>(REPORTS_FILE));
            var labTestTypeRepository          = new LabTestTypeRepository(new Stream <LabTestType>(LAB_TEST_TYPE_FILE));
            var validationMedicationRepository = new ValidationMedicationRepository(new Stream <ValidationMed>(VALIDATION_FILE), userRepository, medicationRepository);

            var equipmentTypeService        = new EquipmentTypeService(equipmentTypeRepository);
            var medicationService           = new MedicationService(medicationRepository, validationMedicationRepository);
            var diagnosisService            = new DiagnosisService(diagnosisRepository);
            var allergenService             = new AllergensService(allergenRepository);
            var categoryService             = new MedicationCategoryService(categoryRepository);
            var symptomsService             = new SymptomsService(symptomsRepository);
            var ingredientsService          = new MedicationIngredientService(ingredientsRepository);
            var specializationService       = new SpecializationService(specializationRepository);
            var cityService                 = new CityService(cityRepository);
            var stateService                = new StateService(stateRepository);
            var addressService              = new AddressService(addressRepository);
            var notificationService         = new NotificationService(notificationRepository, userRepository, medicalRecordRepository);
            var validationMedicationService = new ValidationMedicationService(validationMedicationRepository, notificationService);
            var hospitalService             = new HospitalService(hospitalRepository);
            var departmentService           = new DepartmentService(departmentRepository);
            var bedService                = new BedService(bedRepository);
            var medicalRecordService      = new MedicalRecordService(medicalRecordRepository);
            var treatmentService          = new TreatmentService(treatmentsRepository, notificationService);
            var examiantionSurgeryService = new ExaminationSurgeryService(examinationSurgeryRepository);
            var emergencyRequestService   = new EmergencyRequestService(emergencyRequestRepository, notificationService);
            var vaccinesService           = new VaccinesService(vaccinesRepository);
            var articleService            = new ArticleService(articleRepository);
            var questionService           = new QuestionService(questionRepository, notificationService);
            var doctorsReviewService      = new DoctorReviewService(doctorReviewsRepository);
            var feedbackService           = new FeedbackService(feedbackRepository);
            var surveyService             = new SurveyService(surveyRepository);
            var userService               = new UserService(userRepository, medicalRecordService);
            var workDayService            = new WorkDayService(workDayRepository, MAX_HOURS_PER_WEEK);
            var appointmentService        = new AppointmentService(appointmentsRepository, workDayService, notificationService, VALID_HOURS_FOR_SCHEDULING, APPOINTMENT_LENGTH_IN_MINUTES,
                                                                   SURGERY_LENGTH_IN_MINUTES, START_WORKING_HOURS, END_WORKING_HOURS);
            var vacationRequestService      = new VacationRequestService(vacationRequestRepository, notificationService, NUMBER_OF_ALLOWED_VACAY_REQUESTS);
            var reportsService              = new ReportService(reportsRepository, treatmentsRepository, medicationRepository, examinationSurgeryRepository, roomRepository);
            var labTestTypeService          = new LabTestTypeService(labTestTypeRepository);
            var roomService                 = new RoomService(roomRepository, appointmentsRepository);
            var hospitalEquipmentService    = new HospitalEquipmentService(equipmentRepository);
            var renovationService           = new RenovationService(renovationRepository, roomService, appointmentsRepository, hospitalEquipmentService, notificationService, RENOVATION_DAYS_RESTRICTION, RENOVATION_DAYS_RESTRICTION);
            var availableAppointmentService = new AvailableAppointmentService(appointmentsRepository, workDayService, VALID_HOURS_FOR_SCHEDULING,
                                                                              APPOINTMENT_LENGTH_IN_MINUTES, SURGERY_LENGTH_IN_MINUTES, START_WORKING_HOURS, END_WORKING_HOURS);

            equipmentTypeController        = new EquipmentTypeController(equipmentTypeService);
            medicationController           = new MedicationController(medicationService);
            userController                 = new UserController(userService);
            diagnosisController            = new DiagnosisController(diagnosisService);
            symptomsController             = new SymptomsController(symptomsService);
            categoryController             = new MedicationCategoryController(categoryService);
            allergensController            = new AllergensController(allergenService);
            vaccinesController             = new VaccinesController(vaccinesService);
            labTestTypeController          = new LabTestTypeController(labTestTypeService);
            medicationIngredientController = new MedicationIngredientController(ingredientsService);
            cityController                 = new CityController(cityService);
            specializationController       = new SpecializationController(specializationService);
            addressController              = new AddressController(addressService);
            stateController                = new StateController(stateService);
            departmentController           = new DepartmentController(departmentService);
            hospitalController             = new HospitalController(hospitalService);
            roomController                 = new RoomController(roomService);
            renovationController           = new RenovationController(renovationService);
            hospitalEquipmentController    = new HospitalEquipmentController(hospitalEquipmentService);
            medicalRecordController        = new MedicalRecordController(medicalRecordService);
            treatmentController            = new TreatmentController(treatmentService);
            examinationSurgeryController   = new ExaminationSurgeryController(examiantionSurgeryService);
            articleController              = new ArticleController(articleService);
            questionController             = new QuestionController(questionService);
            doctorReviewController         = new DoctorReviewController(doctorsReviewService);
            surveyController               = new SurveyController(surveyService);
            feedbackController             = new FeedbackController(feedbackService);
            workDayController              = new WorkDayController(workDayService);
            reportController               = new ReportController(reportsService);
            validationMedicationController = new ValidationMedicationController(validationMedicationService);
            vacationRequestController      = new VacationRequestController(vacationRequestService);
            bedController = new BedController(bedService);
            emergencyRequestController     = new EmergencyRequestController(emergencyRequestService);
            appointmentController          = new AppointmentController(appointmentService);
            notificationController         = new NotificationController(notificationService);
            availableAppointmentController = new AvailableAppointmentController(availableAppointmentService);

            validations = new Validations(UNDERAGE_RESTRICTION);
        }
 public void Reload()
 {
     Specializations = SpecializationService.GetAll();
     NotifyOfPropertyChange(() => Specializations);
 }