Ejemplo n.º 1
0
 public PropertiesController(IPropertiesRepo propertiesRepo, IBookingValidator bookingValidator, IBookingsRepo bookingsRepo, IAgentsRepo agentsRepo)
 {
     _propertiesRepo   = propertiesRepo;
     _bookingValidator = bookingValidator;
     _bookingsRepo     = bookingsRepo;
     _agentsRepo       = agentsRepo;
 }
Ejemplo n.º 2
0
 public ContractController(SurveyEntities _db, IPropertiesRepo repo)
 {
     this.db             = _db;
     this.PropertiesRepo = repo;
 }