コード例 #1
0
 public EmployeeController(ResponseDBContext _db)
 {
     db     = _db;
     client = new HttpClient();
 }
コード例 #2
0
 public CommentsRepository(ResponseDBContext context) : base(context)
 {
 }
コード例 #3
0
 public GenericRepository(ResponseDBContext context)
 {
     _context = context;
 }
コード例 #4
0
 public CustomerController(ResponseDBContext _db)
 {
     db                 = _db;
     client             = new HttpClient();
     client.BaseAddress = baseAddress;
 }