Ejemplo n.º 1
0
 public OverdueRentsView(IMonthlyRentsService rents)
 {
     this.rents = rents;
 }
Ejemplo n.º 2
0
 public RentsService(IMapper mapper, EstateManagmentContext db, IMonthlyRentsService monthlyRents)
     : base(mapper, db)
 {
     this.monthlyRents = monthlyRents;
 }
Ejemplo n.º 3
0
 public PaymentsService(IMapper mapper, EstateManagmentContext db, IMonthlyRentsService monthlyRentService)
     : base(mapper, db)
 {
     this.monthlyRentService = monthlyRentService;
 }
 public MonthlyRentController(IMonthlyRentsService monthlyRents)
 {
     this.monthlyRents = monthlyRents;
 }