
1 changed files with 21 additions and 27 deletions
@ -1,27 +1,21 @@ |
|||||
using CoviDok.Data; |
namespace CoviDok.Api.Request |
||||
using System; |
{ |
||||
using System.Collections.Generic; |
public class CaseFilter |
||||
using System.Linq; |
{ |
||||
using System.Threading.Tasks; |
public string SessionId { get; set; } |
||||
|
public int DoctorId { get; set; } |
||||
namespace CoviDok.Api.Request |
public int ParentId { get; set; } |
||||
{ |
public int ChildId { get; set; } |
||||
public class CaseFilter |
public int Assignee { get; set; } |
||||
{ |
public string Title { get; set; } |
||||
public string SessionId { get; set; } |
|
||||
public int DoctorId { get; set; } |
public CaseFilter() |
||||
public int ParentId { get; set; } |
{ |
||||
public int ChildId { get; set; } |
DoctorId = int.MinValue; |
||||
public int Assignee { get; set; } |
ParentId = int.MinValue; |
||||
public string Title { get; set; } |
ChildId = int.MinValue; |
||||
|
Assignee = int.MinValue; |
||||
public CaseFilter() |
Title = null; |
||||
{ |
} |
||||
DoctorId = int.MinValue; |
} |
||||
ParentId = int.MinValue; |
} |
||||
ChildId = int.MinValue; |
|
||||
Assignee = int.MinValue; |
|
||||
Title = null; |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
|
Loading…
Reference in new issue