Example #1
0
        public Document Export(int type)
        {
            List <Appointment> lstData = unitOfWork.AppointmentRepository.Get().ToList();

            return(ExporterFactory.Instance().CreateExporter(type).export(lstData));
        }
Example #2
0
 public Document ExportDate(IEnumerable <Appointment> applist, int type)
 {
     return(ExporterFactory.Instance().CreateExporter(type).export(applist.ToList()));
 }