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