Skip to content
This repository has been archived by the owner on Dec 20, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/feature/4799' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
lorddev committed Dec 16, 2015
2 parents 2b0e551 + ba4327c commit 7c39cf7
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace SnapMD.ConnectedCare.ApiModels.Scheduling
{
public class AvailabilityBlockClinician
{
public int AvailabilityBlockId { get; set; }
public int ClinicianId { get; set; }
public bool Locked { get; set; }
public bool Private { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ public class AvailabilityBlockRequest

public int? AvailabilityBlockRuleId { get; set; }

public short OptimizationTypeCodeId { get; set; }

public DateTime? EndTime { get; set; }

public bool IsAllDay { get; set; }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;

namespace SnapMD.ConnectedCare.ApiModels.Scheduling
{
Expand All @@ -15,5 +16,7 @@ public class AvailabilityBlockResponse : AvailabilityBlockRequest
public DateTime? ModifiedDate { get; set; }

public AvailabilityBlockRuleResponse Rule { get; set; }

public IEnumerable<AvailabilityBlockClinician> AvailabilityBlockClinicians { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
<Compile Include="ScheduleConsultationDetailByUsername.cs" />
<Compile Include="ScheduledConsultation.cs" />
<Compile Include="ScheduledConsultationResult.cs" />
<Compile Include="Scheduling\AvailabilityBlockClinician.cs" />
<Compile Include="Scheduling\AvailabilityBlockRequest.cs" />
<Compile Include="Scheduling\AvailabilityBlockResponse.cs" />
<Compile Include="Scheduling\AvailabilityBlockRuleRequest.cs" />
Expand Down

0 comments on commit 7c39cf7

Please sign in to comment.