Beispiel #1
0
 /// <summary>
 /// Default constructer
 /// </summary>
 public MSSQLApplicationLinksService(SVUDbContext dbContext, ILoggingService loggingService)
     : base(dbContext, loggingService)
 {
 }
 /// <summary>
 /// Default constructer
 /// </summary>
 public MSSQLFileDatabaseService(SVUDbContext dbContext, ILoggingService logginService)
     : base(dbContext, logginService)
 {
 }
Beispiel #3
0
 /// <summary>
 /// Default constructer
 /// </summary>
 public MSSQLInitializeDatabaseService(ILoggingService logginService, SVUDbContext dbContext)
     : base(dbContext, logginService)
 {
 }
Beispiel #4
0
 /// <summary>
 /// Defualt constructer
 /// </summary>
 public MSSQLHealthAccountService(SVUDbContext dbContext, ILoggingService loggingService)
     : base(dbContext, loggingService)
 {
 }
 /// <summary>
 /// Default constructer
 /// </summary>
 public BaseMSSQLService(SVUDbContext dbContext, ILoggingService logginService)
 {
     DbContext     = dbContext;
     LogginService = logginService;
 }