示例#1
0
 public RepositoryConversations()
 {
     ADC = new AdviceDbContext();
 }
示例#2
0
 public RepositoryConversations(AdviceDbContext AD)
 {
     ADC = AD ?? throw new ArgumentNullException(nameof(AD));
 }
 public RepositoryAccounts(AdviceDbContext AD)
 {
     ADC = AD;
 }
 public RepositoryAccounts()
 {
     ADC = new AdviceDbContext();
 }
示例#5
0
 public RepositoryDepartments(AdviceDbContext AD)
 {
     ADC = AD ?? throw new ArgumentNullException(nameof(AD));
 }
示例#6
0
 public RepositoryDepartments()
 {
     ADC = new AdviceDbContext();
 }
示例#7
0
 public RepositoryMessages()
 {
     ADC = new AdviceDbContext();
 }