public MachineService(StudentDbcontext studentDbContext) { _machineDbContext = studentDbContext; }
public LocationServiceService(StudentDbcontext dbContext) { _dbContext = dbContext; }
/// <summary> /// /// </summary> /// <param name="configuration"></param> public StudentController(IConfiguration configuration, ICommonService commonService, StudentDbcontext dbcontext) { _configuration = configuration; _studentService = commonService; _dbcontext = dbcontext; }
public StudentService(StudentDbcontext studentDbContext) { _studentDbContext = studentDbContext; }
public RawController(StudentDbcontext db, IStudentService studentService) { _db = db; _studentService = studentService; }