/// <summary>
 /// Initializes a new instance of the EFClientRepository with the default context
 /// </summary>
 public EFClientRepository()
 {
     m_context = new SwipeBoxContext();
 }
 /// <summary>
 /// Initializes a new instance of the EFClientRepository with a custom context
 /// </summary>
 /// <param name="context">custom swipebox context</param>
 public EFClientRepository(ISwipeBoxContext context)
 {
     m_context = context;
 }
 /// <summary>
 /// Initializes a new instance of the EFMeetingRepository
 /// </summary>
 public EFMeetingRepository()
 {
     m_context = new SwipeBoxContext();
 }