You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
354 B
15 lines
354 B
using PEIS.Base;
|
|
using PEIS.Entity;
|
|
using PEIS.Event;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PEIS.View.Enrollment
|
|
{
|
|
interface IEnrollmentSearchView : IViewBase
|
|
{
|
|
// 获取登记列表
|
|
event EventHandler<Args<EnrollmentPatient>> GetRegItems;
|
|
void ShowRegItems(List<EnrollmentPatient> items);
|
|
}
|
|
}
|
|
|