Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="EducationRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 public EducationRepository(dentistEntities entity) :
     base(entity)
 {
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NotificationGroupRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 /// <param name="authenticationSession">Authentication session.</param>
 public NotificationGroupRepository(dentistEntities entity, IAuthenticationSession authenticationSession) :
     base(entity, authenticationSession)
 {
 }
Example #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ReminderAlertRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 public ReminderAlertRepository(dentistEntities entity) :
     base(entity)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="NotificationListRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 public NotificationListRepository(dentistEntities entity) :
     base(entity)
 {
 }
Example #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ReminderRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 /// <param name="authenticationSession">Authentication session.</param>
 public ReminderRepository(dentistEntities entity, IAuthenticationSession authenticationSession) :
     base(entity, authenticationSession)
 {
 }
Example #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BackupRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 public BackupRepository(dentistEntities entity)
     : base(entity)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="SystemUpdatesRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 public SystemUpdatesRepository(dentistEntities entity)
     : base(entity)
 {
 }
Example #8
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LoginRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 /// <param name="authenticationSession">Authentication session.</param>
 public LoginRepository(dentistEntities entity, IAuthenticationSession authenticationSession) :
     base(entity, authenticationSession)
 {
 }
Example #9
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RoleRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 public RoleRepository(dentistEntities entity) :
     base(entity)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="UiCultureRepository"/> class
 /// </summary>
 /// <param name="entity">The entity.</param>
 public UiCultureRepository(dentistEntities entity)
     : base(entity)
 {
 }
Example #11
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SettingRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 public SettingRepository(dentistEntities entity) :
     base(entity)
 {
 }
Example #12
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RepositoryBase"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 /// <param name="authenticationSession">Authentication session.</param>
 protected RepositoryBase(dentistEntities entity, IAuthenticationSession authenticationSession)
 {
     this.Entities = entity;
     this.AuthenticationSession = authenticationSession;
 }
Example #13
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RepositoryBase"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 protected RepositoryBase(dentistEntities entity)
 {
     this.Entities = entity;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="GenderRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 public GenderRepository(dentistEntities entity) :
     base(entity)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ReminderFilterRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 public ReminderFilterRepository(dentistEntities entity) :
     base(entity)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AppointmentRepository"/> class.
 /// </summary>
 /// <param name="entity">The entity.</param>
 /// <param name="authenticationSession">Authentication session.</param>
 public AppointmentRepository(dentistEntities entity, IAuthenticationSession authenticationSession)
     : base(entity, authenticationSession)
 {
 }