Browse Source

Remove unused usings in CaseFilter

master
Daniel Gyulai 4 years ago
parent
commit
32a9fdd142
  1. 48
      CoviDok/Api/Request/CaseFilter.cs

48
CoviDok/Api/Request/CaseFilter.cs

@ -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…
Cancel
Save