public StudyMaterialsController(IStudyMaterial studyMaterial, ISubCategoryService subCategoryService)
 {
     _studyMaterial      = studyMaterial;
     _subCategoryService = subCategoryService;
 }
Example #2
0
 public PackagesController(IPackageService packageService, IStudyMaterial studyMaterial, ISubCategoryService subCategoryService)
 {
     _packageService     = packageService;
     _studyMaterial      = studyMaterial;
     _subCategoryService = subCategoryService;
 }