コード例 #1
0
 //Controller
 public LoginController(IConfiguration configuration, MyMantriRepository repObj)
 {
     this.configuration = configuration;
     _repObj            = repObj;
 }
コード例 #2
0
ファイル: HomeController.cs プロジェクト: Rohith09/MyMantri
 //Controller
 public HomeController(IConfiguration configuration, IMapper mapper, MyMantriRepository repObj)
 {
     this.configuration = configuration;
     _mapper            = mapper;
     _repObj            = repObj;
 }