Пример #1
0
        public int AppointmentAbsent(AppointmentModel appointmentModel)
        {
            int result = 0;

            PractitionerBusiness businessLayer = new PractitionerBusiness();

            result = businessLayer.AppointmentAbsent(appointmentModel);

            return(result);
        }