Esempio n. 1
0
 public CategoryService(
     IDeletableEntityRepository<NeedCategory> needCategories, 
     IDeletableEntityRepository<EventCategory> eventCategories)
 {
     this.needCategories = needCategories;
     this.eventCategories = eventCategories;
 }
Esempio n. 2
0
 public CommunitiesService(IDeletableEntityRepository<Community> communities, IDistrictsService districts, ICitiesService cities, IRepository<User> users, IIdentifierProvider provider)
 {
     this.communities = communities;
     this.districts = districts;
     this.cities = cities;
     this.users = users;
     this.provider = provider;
 }
 public SportCenterService(
     IDeletableEntityRepository<SportCenter> sportCentersDb, 
     IDeletableEntityRepository<User> usersDb,
     IDeletableEntityRepository<SportCategory> categoriesDb)
 {
     this.sportCentersDb = sportCentersDb;
     this.usersDb = usersDb;
     this.categoriesDb = categoriesDb;
 }
Esempio n. 4
0
 public EventController(IDeletableEntityRepository<Event> events,
     IDeletableEntityRepository<Club> clubs,
     IDeletableEntityRepository<Image> images,
     IDeletableEntityRepository<MusicGenre> genres)
 {
     this.events = events;
     this.clubs = clubs;
     this.images = images;
     this.genres = genres;
 }
 public AddressService(
     IDeletableEntityRepository<Address> addressesDb,
     IDeletableEntityRepository<User> usersDb,
      IDeletableEntityRepository<SportCenter> sportCenters,
      ISportCenterService sportCenterService)
 {
     this.addressesDb = addressesDb;
     this.usersDb = usersDb;
     this.sportCenters = sportCenters;
     this.sportCenterService = sportCenterService;
 }
Esempio n. 6
0
 public DataService(
     IDeletableEntityRepository<Comment> commentsRepository,
     IDeletableEntityRepository<Home> homeRepository,
     IDeletableEntityRepository<Child> childrenRepository,
     IDeletableEntityRepository<Need> needRepository,
     IDeletableEntityRepository<Gift> giftRepository,
     IDeletableEntityRepository<EventCategory> eventCategoryRepository,
     IDeletableEntityRepository<NeedCategory> needCategoryRepository)
 {
     this.CommentsRepository = commentsRepository;
     this.HomeRepository = homeRepository;
     this.ChildrenRepository = childrenRepository;
     this.NeedRepository = needRepository;
     this.GiftRepository = giftRepository;
     this.EventCategoryRepository = eventCategoryRepository;
     this.NeedCategoryRepository = needCategoryRepository;
 }
 public PeopleController(IDeletableEntityRepository<Person> peopleDeletableRepository)
 {
     this.peopleRepository = peopleDeletableRepository;
 }
Esempio n. 8
0
 public BeersService(IDbRepository<Beer> beers, IIdentifierProvider identifierProvider, IDeletableEntityRepository<Beer> deleteableRepo)
 {
     this.beers = beers;
     this.identifierProvider = identifierProvider;
     this.deleteableRepo = deleteableRepo;
 }
Esempio n. 9
0
 public AddressesService(IDeletableEntityRepository <Address> addressRepository)
 {
     this.addressRepository = addressRepository;
 }
Esempio n. 10
0
 public ThreadsController(IDeletableEntityRepository<Thread> threads)
 {
     this.threads = threads;
 }
Esempio n. 11
0
 public CommentService(IDeletableEntityRepository<Comment> comments)
 {
     this.comments = comments;
 }
Esempio n. 12
0
 public UsersService(IDeletableEntityRepository<User> users)
 {
     this.users = users;
 }
Esempio n. 13
0
 public ClubsController(IDeletableEntityRepository<Club> clubs)
 {
     this.clubs = clubs;
 }
Esempio n. 14
0
 public IngredientsService(IDeletableEntityRepository <Ingredient> ingredientRepository)
 {
     this.ingredientRepository = ingredientRepository;
 }
Esempio n. 15
0
 public MinistryService(
     IDeletableEntityRepository <Ministry> ministriesRepository)
 {
     this.ministriesRepository = ministriesRepository;
 }
Esempio n. 16
0
 public LessonsService(IDeletableEntityRepository <Lesson> lessonsRepository, IRepository <UserLesson> usersLessonsRepository, IDeletableEntityRepository <Course> coursesRepository)
 {
     this.lessonsRepository      = lessonsRepository;
     this.usersLessonsRepository = usersLessonsRepository;
     this.coursesRepository      = coursesRepository;
 }
 public TypeOfTravelService(IDeletableEntityRepository <TypeTravel> typeTravelRepository)
 {
     this.typeTravelRepository = typeTravelRepository;
 }
Esempio n. 18
0
 public ExpencesService(IDeletableEntityRepository <RealEstateExpence> expenceRepository)
 {
     this.expenceRepository = expenceRepository;
 }
 public EmployeesService(IDeletableEntityRepository <Employee> repository)
 {
     this.repository = repository;
 }
 public HomeController(IDeletableEntityRepository<Post> posts, IDeletableEntityRepository<TextAd> ads, IDeletableEntityRepository<Banner> banners)
 {
     this.posts = posts;
     this.ads = ads;
     this.banners = banners;
 }
 public ApplianceService(IDeletableEntityRepository<Appliance> appliances, EstateSocialSystemDbContext context)
 {
     this.appliances = appliances;
     this.context = context;
 }
Esempio n. 22
0
 public BlogPostsController(IDeletableEntityRepository <BlogPost> blogPosts)
 {
     this.blogPosts = blogPosts;
 }
Esempio n. 23
0
 public CreateMatchQueryHandler(IDeletableEntityRepository <PlayWeek> playweeksRepository, IMapper mapper)
 {
     this.playweeksRepository = playweeksRepository;
     this.mapper = mapper;
 }
Esempio n. 24
0
 public PlayersService(IDeletableEntityRepository <Player> playersRepo)
 {
     this.playersRepo = playersRepo;
 }
Esempio n. 25
0
 public RateSystemService(IDeletableEntityRepository<RateSystem> rateSystems)
 {
     this.rateSystems = rateSystems;
 }
Esempio n. 26
0
 public CategoriesService(IDeletableEntityRepository <Category> categoriesRepository)
 {
     this.categoriesRepository = categoriesRepository;
 }
Esempio n. 27
0
 public ClubService(IDeletableEntityRepository<Club> clubs)
 {
     this.clubs = clubs;
 }
Esempio n. 28
0
 public FeedbackService(
     IDeletableEntityRepository <Feedback> feedbackRepository)
 {
     this.feedbackRepository = feedbackRepository;
 }
Esempio n. 29
0
 public HomeController(IDeletableEntityRepository<Category> categories)
 {
     this.categories = categories;
 }
 public SettingsService(IDeletableEntityRepository <Setting> settingsRepository, IDeletableEntityRepository <ApplicationUser> userRepository)
 {
     this.settingsRepository = settingsRepository;
     this.userRepository     = userRepository;
 }
Esempio n. 31
0
 public MessagesService(IDeletableEntityRepository <Message> messagesRepositoy)
 {
     this.messagesRepositoy = messagesRepositoy;
 }
Esempio n. 32
0
 public FlightsService(IDeletableEntityRepository <Flight> flightsRepository)
 {
     this.flightsRepository = flightsRepository;
 }
 public FeedbackController(IDeletableEntityRepository<Feedback> feedbacks)
 {
     this.feedbacks = feedbacks;
 }
 public ReservationsService(IDeletableEntityRepository <Reservation> reservationRepository)
 {
     this.reservationRepository = reservationRepository;
 }
 public ClubHiddenImageVoteService(IDeletableEntityRepository<ClubHiddenImageVote> votes)
 {
     this.votes = votes;
 }
Esempio n. 36
0
 public CustomersService(IDeletableEntityRepository <Customer> customerRepository)
 {
     this.customerRepository = customerRepository;
 }
 public ProjectsService(IDeletableEntityRepository <Project> projectsRepository, IDeletableEntityRepository <ProjectPicture> projectPicturesRepository)
 {
     this.projectsRepository        = projectsRepository;
     this.projectPicturesRepository = projectPicturesRepository;
 }
Esempio n. 38
0
 public JoinController(IDeletableEntityRepository<Room> rooms, IDeletableEntityRepository<User> users)
 {
     this.rooms = rooms;
     this.users = users;
 }
 public ApplianceController(IDeletableEntityRepository<Appliance> appliances)
 {
     this.appliances = appliances;
 }
Esempio n. 40
0
 public UserController(IDeletableEntityRepository <User> users)
 {
     this.users = users;
 }
Esempio n. 41
0
 public ModifyTournamentQueryHandler(IDeletableEntityRepository <Tournament> tournamentsRepository, IMapper mapper)
 {
     this.tournamentsRepository = tournamentsRepository;
     this.mapper = mapper;
 }
Esempio n. 42
0
 public CigarService(IDeletableEntityRepository <Cigar> cigarRepository)
 {
     this.cigarRepository = cigarRepository;
 }
 public EstateService(IDeletableEntityRepository<Estate> estates)
 {
     this.estates = estates;
 }
Esempio n. 44
0
 public OrderItemsService(IDeletableEntityRepository <OrderItem> orderItemRepository)
 {
     this.orderItemRepository = orderItemRepository;
 }
 public PageableFeedbackListController(IDeletableEntityRepository<Feedback> feedbacks)
 {
     this.feedbacks = feedbacks;
 }
Esempio n. 46
0
 public TruckAdsService(IDeletableEntityRepository <TruckAd> truckAdsRepository, IImagesService imagesService, ISaveImagesService saveImagesService)
 {
     this.truckAdsRepository = truckAdsRepository;
     this.imagesService      = imagesService;
     this.saveImagesService  = saveImagesService;
 }
 public ClubAnonymousReviewService(IDeletableEntityRepository<ClubAnonymousReview> reviews)
 {
     this.reviews = reviews;
 }
Esempio n. 48
0
 public SupportCompaniesService(IDeletableEntityRepository <SupportCompany> repository)
 {
     this.repository = repository;
 }
 public RoomModerationController(IDeletableEntityRepository<Room> rooms)
 {
     this.rooms = rooms;
 }
Esempio n. 50
0
 public UsersService(IDeletableEntityRepository <ApplicationUser> usersRepository)
 {
     this.usersRepository = usersRepository;
 }
 public QuestionsController(IDeletableEntityRepository<Post> posts, ISanitizer sanitizer)
 {
     this.posts = posts;
     this.sanitizer = sanitizer;
 }
Esempio n. 52
0
 public CitiesService(IDeletableEntityRepository <City> citiesRepo)
 {
     this.citiesRepo = citiesRepo;
 }
 public FeedbackController(IDeletableEntityRepository<Feedback> feedbacks, ISanitizer sanitizer)
 {
     this.feedbacks = feedbacks;
     this.sanitizer = sanitizer;
 }
Esempio n. 54
0
 public ProjectsService(IDeletableEntityRepository <Project> projectsRepository, IDeletableEntityRepository <ApplicationUser> userRepository)
 {
     this.ProjectsRepository = projectsRepository;
     this.UserRepository     = userRepository;
 }
Esempio n. 55
0
 public AdminController(IDeletableEntityRepository<Post> posts)
 {
     this.posts = posts;
 }
Esempio n. 56
0
 public CommentsService(IDeletableEntityRepository <Comment> commentsRepository)
 {
     this.commentsRepository = commentsRepository;
 }
Esempio n. 57
0
 public PlacesService(IDbRepository<Place> places, IIdentifierProvider identifierProvider, IDeletableEntityRepository<Place> deleteableRepo)
 {
     this.places = places;
     this.identifierProvider = identifierProvider;
     this.deleteableRepo = deleteableRepo;
 }
Esempio n. 58
0
 public SettingsController(ISettingsService settingsService, IDeletableEntityRepository <Setting> repository)
 {
     this.settingsService = settingsService;
     this.repository      = repository;
 }
 public AccountController(IDeletableEntityRepository<User> users)
 {
     this.users = users;
 }
Esempio n. 60
0
 public SettingsService(IDeletableEntityRepository <Setting> settingsRepository)
 {
     this.settingsRepository = settingsRepository;
 }