Ejemplo n.º 1
0
 /*Section="Constructor"*/
 public RentPaymentPlanController(
     ILoggerFactory loggerFactory,
     IRentPaymentPlanService rentPaymentPlanService,
     IEstateRentPeriodService estateRentPeriodService
     )
     : base(loggerFactory, rentPaymentPlanService)
 {
     _estateRentPeriodService = estateRentPeriodService;
 }
Ejemplo n.º 2
0
 /*Section="Constructor-1"*/
 public EstateLandlordService(IEstateRentPeriodService estateRentPeriodService, IParameterReader parameterReader)
 {
     _estateRentPeriodService = estateRentPeriodService;
     _parameterReader         = parameterReader;
 }