repo.or.cz
/
castle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixing an issue with output parameters that are of type IntPtr
[castle.git]
/
Experiments
/
Castle.Igloo
/
Igloo.Clinic.Services
/
Interfaces
/
IPatientService.cs
blob
759c4a7e7aeeab00925177b50606712732b5275a
1
using
System
.
Collections
;
2
using
System
.
Collections
.
Generic
;
3
using
Igloo
.
Clinic
.
Domain
;
4
5
namespace
Igloo
.
Clinic
.
Services
.
Interfaces
6
{
7
public interface
IPatientService
8
{
9
IList
<
Patient
>
RetrievePatients
(
Doctor doctor
);
10
}
11
}