public AdoptionFormController(IAdoptionFormService adoptionForms, IAnimalService animals, IAdopterService adopters, ISanitizer sanitizeService)
 {
     this.adoptionForms = adoptionForms;
     this.animals = animals;
     this.adopters = adopters;
     this.sanitizeService = sanitizeService;
 }
Exemplo n.º 2
0
 public VolunteerFormController(IVolunteerFormService volunteers, IOrganizationService organizations, IAdopterService adopters, ISanitizer sanitizeService)
 {
     this.volunteers      = volunteers;
     this.organizations   = organizations;
     this.adopters        = adopters;
     this.sanitizeService = sanitizeService;
 }
 public VolunteerFormController(IVolunteerFormService volunteers, IOrganizationService organizations, IAdopterService adopters, ISanitizer sanitizeService)
 {
     this.volunteers = volunteers;
     this.organizations = organizations;
     this.adopters = adopters;
     this.sanitizeService = sanitizeService;
 }
Exemplo n.º 4
0
 public AdoptionFormController(IAdoptionFormService adoptionForms, IAnimalService animals, IAdopterService adopters, ISanitizer sanitizeService)
 {
     this.adoptionForms   = adoptionForms;
     this.animals         = animals;
     this.adopters        = adopters;
     this.sanitizeService = sanitizeService;
 }
Exemplo n.º 5
0
 public DefaultController(IVolunteerService volunteerService, ICatService catService, IDogService dogService, IAdopterService adopterService)
 {
     this.volunteerService = volunteerService;
     this.catService       = catService;
     this.dogService       = dogService;
     this.adopterService   = adopterService;
 }
 public void Init()
 {
     this.adopters = ObjectFactory.GetAdopterService();
     this.controller = new AdoptersController(adopters);
 }
Exemplo n.º 7
0
 public AdoptersController(IAdopterService adopters)
 {
     this.adopters = adopters;
 }
Exemplo n.º 8
0
 public AnimalController(IAnimalService animalService, IAdopterService adopterService, IMediatorHandler mediator, INotificationHandler <DomainNotification> notifications, ILoggerFactory loggerFactory, IUser user) : base(mediator, notifications, loggerFactory, user)
 {
     _animalService  = animalService;
     _adopterService = adopterService;
     _logger         = loggerFactory.CreateLogger("Error");
 }
 public AdoptersController(IAdopterService adopterService)
 {
     _adopterService = adopterService;
 }
Exemplo n.º 10
0
 public AdopterController(IAdopterService adopters)
 {
     this.adopters = adopters;
 }
 public HomeController(IAdopterService service)
 {
     _adopterService = service;
 }
Exemplo n.º 12
0
 public void Init()
 {
     this.adopters   = ObjectFactory.GetAdopterService();
     this.controller = new AdoptersController(adopters);
 }
Exemplo n.º 13
0
 public AdoptionService(IAdoptionRepository adoptionRepository, IAnimalService animalService, IAdopterService adopterService)
 {
     _adoptionRepository = adoptionRepository;
     _animalService      = animalService;
     _adopterService     = adopterService;
 }