コード例 #1
0
ファイル: FlatController.cs プロジェクト: antcorpinc/Apollo
 public FlatController(ISocietyService societyService, IFlatService flatService)
 {
     _societyService = societyService;
     _flatService    = flatService;
 }
コード例 #2
0
 public SocietyController()
     : base(new UserService())
 {
     _societyService = new SocietyService();
 }
コード例 #3
0
 public SocietyController(ISocietyService societyService)
 {
     _societyService = societyService;
 }
コード例 #4
0
 public BuildingController(ISocietyService societyService, IBuildingService buildingService)
 {
     _societyService  = societyService;
     _buildingService = buildingService;
 }