Updated interface name case to have capital I prefix for consistency

This commit is contained in:
Neil Dorin
2017-10-02 14:04:05 -06:00
parent a8e5e2f763
commit 412dca0459
4 changed files with 3 additions and 15 deletions

View File

@@ -6,7 +6,7 @@ using Crestron.SimplSharp;
namespace PepperDash.Essentials.Devices.Common.Codec
{
public interface iHasCallFavorites
public interface IHasCallFavorites
{
CodecCallFavorites CallFavorites { get; }
}

View File

@@ -24,16 +24,4 @@ namespace PepperDash.Essentials.Devices.Common.Codec
BoolFeedback IncomingCallFeedback { get; }
}
public interface IHasDirectory
{
}
public interface IHasObtp
{
// Upcoming Meeting warning event
}
}

View File

@@ -9,7 +9,7 @@ using PepperDash.Essentials.Devices.Common.VideoCodec;
namespace PepperDash.Essentials.Devices.Common.Codec
{
public interface iHasDirectory
public interface IHasDirectory
{
event EventHandler<DirectoryEventArgs> DirectoryResultReturned;

View File

@@ -20,7 +20,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Cisco
{
enum eCommandType { SessionStart, SessionEnd, Command, GetStatus, GetConfiguration };
public class CiscoCodec : VideoCodecBase, IHasCallHistory, iHasCallFavorites, iHasDirectory, IHasScheduleAwareness
public class CiscoCodec : VideoCodecBase, IHasCallHistory, IHasCallFavorites, IHasDirectory, IHasScheduleAwareness
{
public event EventHandler<EventArgs> UpcomingMeetingWarning;