예제 #1
0
 public ApplicationUserController(LawyerAPIDBContext context)
 {
     _context = context;
 }
 public ClientLawyerAssignmentsController(LawyerAPIDBContext context)
 {
     _context = context;
 }
예제 #3
0
 public ClientProfilesController(LawyerAPIDBContext context)
 {
     _context = context;
 }
예제 #4
0
 public LawyerProfilesController(LawyerAPIDBContext context, ILogger <LawyerProfilesController> logger)
 {
     _context = context;
     _logger  = logger;
 }
예제 #5
0
 public LawChambersController(LawyerAPIDBContext context)
 {
     _context = context;
 }
예제 #6
0
 public ClientProfileService(LawyerAPIDBContext context)
 {
     _context = context;
 }