Exemplo n.º 1
0
 public VideoRepo(ICommonEmailsService ICommonEmailsService, therapistContext therapistContext, IConfiguration configuration)
 {
     this.therapistContext = therapistContext;
     config = configuration;
     commonEmailsService = ICommonEmailsService;
     _connectionString   = configuration.GetConnectionString("DBCNSTR");
 }
Exemplo n.º 2
0
 public CompanyRepo(therapistContext therapistContext, IConfiguration configuration, ICommonEmailsService ICommonEmailsService)
 {
     this.therapistContext = therapistContext;
     config              = configuration;
     _connectionString   = configuration.GetConnectionString("DBCNSTR");
     commonEmailsService = ICommonEmailsService;
 }
Exemplo n.º 3
0
 public AuthRepo(IOptions <AppSettings> options, therapistContext therapistContext, IMapper mapper, IConfiguration configuration)
 {
     this.appSettings      = options.Value;
     this.therapistContext = therapistContext;
     this.mapper           = mapper;
     config            = configuration;
     _connectionString = configuration.GetConnectionString("DBCNSTR");
 }
 public CommonEmailsRepo(therapistContext therapistContext, IConfiguration configuration)
 {
     this.therapistContext = therapistContext;
     config            = configuration;
     _connectionString = configuration.GetConnectionString("DBCNSTR");
 }
Exemplo n.º 5
0
 public SuperAdminRepo(therapistContext therapistContext, IConfiguration configuration)
 {
     this.therapistContext = therapistContext;
     config            = configuration;
     _connectionString = configuration.GetConnectionString("DBCNSTR");
 }