コード例 #1
0
 public ProductListBaseConsoleService(ProductBaseConsoleService productConsoleService,
                                      ICrudConsoleService <Product> crudProductService,
                                      ProductListPrintConsoleService printProductService,
                                      ProductManager productManager)
 {
     _productConsoleService = productConsoleService;
     _crudProductService    = crudProductService;
     _printProductService   = printProductService;
     _productManager        = productManager;
 }
コード例 #2
0
 public CharacteristicBaseConsoleService(ICrudConsoleService <Characteristic> crudCharacteristicService,
                                         CharacteristicPrintConsoleService printCharacteristicService)
 {
     _crudCharacteristicService  = crudCharacteristicService;
     _printCharacteristicService = printCharacteristicService;
 }
コード例 #3
0
 public SubjectsBaseConsoleService(ICrudConsoleService <Subject> crudSubjectService, SubjectsPrintConsoleService printSubjectService)
 {
     _crudSubjectService  = crudSubjectService;
     _printSubjectService = printSubjectService;
 }
コード例 #4
0
 public SemestersBaseConsoleService(ICrudConsoleService <Semester> crudSemesterService, SemestersPrintConsoleService printSemesterService)
 {
     _crudSemesterService  = crudSemesterService;
     _printSemesterService = printSemesterService;
 }
コード例 #5
0
 public CategoryBaseConsoleService(ICrudConsoleService <Category> crudCategoryService, CategoryPrintConsoleService printCategoryService)
 {
     _crudCategoryService  = crudCategoryService;
     _printCategoryService = printCategoryService;
 }
コード例 #6
0
 public ManufacturerBaseConsoleService(ICrudConsoleService <Manufacturer> crudManufacturerService, ManufacturerPrintConsoleService printManufacturerService)
 {
     _crudManufacturerService  = crudManufacturerService;
     _printManufacturerService = printManufacturerService;
 }
コード例 #7
0
 public StudentsBaseConsoleService(ICrudConsoleService <Student> crudStudentService, StudentsPrintConsoleService printStudentService)
 {
     _crudStudentService  = crudStudentService;
     _printStudentService = printStudentService;
 }
 public GroupsBaseConsoleService(ICrudConsoleService <Group> crudGroupService, GroupsPrintConsoleService printGroupService)
 {
     _crudGroupService  = crudGroupService;
     _printGroupService = printGroupService;
 }
コード例 #9
0
 public SpecialtiesBaseConsoleService(ICrudConsoleService <Specialty> crudSpecialtyService, SpecialtiesPrintConsoleService printSpecialtyService)
 {
     _crudSpecialtyService  = crudSpecialtyService;
     _printSpecialtyService = printSpecialtyService;
 }