Esempio n. 1
0
 public UsersController(IUserManager userManager,
     IServicesManager servicesManager,
     IPropertyManager propertyManager,
     IAppointmentManager appointmentManager,
     IYelpManager yelpManager)
     : base(userManager)
 {
     _servicesManager = servicesManager;
     _propertyManager = propertyManager;
     _appointmentManager = appointmentManager;
     _yelpManager = yelpManager;
 }
 public LetsDoTheMathController(IPropertyManager propertyManager, IUserManager userManager, IYelpManager yelpManager)
     : base(userManager)
 {
     _propertyManager = propertyManager;
     _yelpManager = yelpManager;
 }