public AdminController(IWareRepository repos, IUserRepository userrepos, IOrderRepository orderrepos, IOrderWaresRepository orderWaresRepository) { this.repos = repos; this.userrepos = userrepos; this.orderrepos = orderrepos; this.orderWaresRepository = orderWaresRepository; }
public WareBookingController(IWareBookingRepository repository, ITimeSlotRepository timeSlotRepository, IWareRepository wareRepository) { bookingRepository = repository; this.timeSlotRepository = timeSlotRepository; this.wareRepository = wareRepository; }
public GetWaresFromPlaceWithPaging(IWareRepository wareRepository, long placeId, int page, int amount) { this.wareRepository = wareRepository; PlaceId = placeId; Page = page; Amount = amount; }
public CreateWareBooking(IWareBookingRepository wareBookingRepository, ITimeSlotRepository timeSlotRepository, IWareRepository wareRepository, CreateWareBookingInput input) { this.wareBookingRepository = wareBookingRepository; Input = input; this.timeSlotRepository = timeSlotRepository; this.wareRepository = wareRepository; }
public CartController(IWareRepository repos, IOrderProcessor orderProcessor, IUserRepository userrepos, IOrderRepository orderrepos, IOrderWaresRepository orwarrepos) { this.repos = repos; this.orderProcessor = orderProcessor; this.userrepos = userrepos; this.orderrepos = orderrepos; this.orwarrepos = orwarrepos; }
public UpdateWareBooking(IWareBookingRepository wareBookingRepository, ITimeSlotRepository timeSlotRepository, IWareRepository wareRepository, domain.WareBooking wareBooking) { this.wareBookingRepository = wareBookingRepository; this.timeSlotRepository = timeSlotRepository; this.wareRepository = wareRepository; WareBooking = wareBooking; }
/// <inheritdoc /> public WareService(IWareRepository repo, IServiceLocator serviceFactory) { _keeper = new Keeper(repo, serviceFactory.ClientService.GetNotifiableClients(), serviceFactory.NotificationService); }
public GetWaresWithPaging(IWareRepository wareRepository, int page, int amount) { this.wareRepository = wareRepository; Page = page; Amount = amount; }
public DeleteWare(IWareRepository wareRepository, long id) { this.wareRepository = wareRepository; Id = id; }
public GetWareById(IWareRepository wareRepository, long id) { this.wareRepository = wareRepository; Id = id; }
public CreateWare(IWareRepository wareRepository, CreateWareInput input) { this.wareRepository = wareRepository; Input = input; }
public GetWaresFromPlace(IWareRepository wareRepository, long placeId) { this.wareRepository = wareRepository; PlaceId = placeId; }
public UpdateWare(IWareRepository wareRepository, domain.Ware ware) { this.wareRepository = wareRepository; Ware = ware; }
public WareController(IWareRepository repos) { this.repos = repos; }
public Keeper(IWareRepository repo, IEnumerable <Client> clients, INotificationService notificationService) { _repo = repo; SubscribeClients(clients, notificationService); }
public WareController(IWareRepository wareRepository) { repository = wareRepository; }
public GetAllWares(IWareRepository wareRepository) { this.wareRepository = wareRepository; }