示例#1
0
 public AccountChecks(Social_networkContext context)
 {
     this.context = context;
 }
示例#2
0
 public AccountInformation(Social_networkContext context)
 {
     this.context = context;
 }
示例#3
0
 public ActionServiceImplementation(Social_networkContext context)
 {
     accountActions = new AccountActions(context);
 }
示例#4
0
 public CheckServiceImplementation(Social_networkContext context)
 {
     accountChecks = new AccountChecks(context);
 }
示例#5
0
 public AccountController(Social_networkContext context)
 {
     db = context;
 }
示例#6
0
 public AccountActions(Social_networkContext context)
 {
     this.context = context;
 }
 public AccountServiceImplementation(Social_networkContext context)
 {
     accountInformation = new AccountInformation(context);
 }