minetpcuglu's Stars
knadh/listmonk
High performance, self-hosted, newsletter and mailing list manager with a modern dashboard. Single binary app.
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
nopSolutions/nopCommerce
ASP.NET Core eCommerce software. nopCommerce is a free and open-source shopping cart.
evershopcommerce/evershop
🛍️ NodeJS E-commerce Platform
aspnetrun/run-aspnetcore-microservices
Microservices on .NET platforms used ASP.NET Web API, Docker, RabbitMQ, MassTransit, Grpc, Yarp API Gateway, PostgreSQL, Redis, SQLite, SqlServer, Marten, Entity Framework Core, CQRS, MediatR, DDD, Vertical and Clean Architecture implementation with using latest features of .NET 8 and C# 12
smartstore/SmartStoreNET
Open Source ASP.NET MVC Enterprise eCommerce Shopping Cart Solution
scttcper/ngx-toastr
🍞 Angular Toastr
grandnode/grandnode2
Open-Source eCommerce Platform on .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, LiteDB & Vue.js
aspnetboilerplate/aspnetboilerplate-samples
Sample projects using ASP.NET Boilerplate
Napster2210/ngx-spinner
A library for loading spinner for Angular 4 - 17.
abpframework/eShopOnAbp
Reference microservice solution built with the ABP Framework and .NET, runs on Kubernetes with Helm configuration, includes API Gateways, Angular and ASP.NET Core MVC applications, PostgreSQL and MongoDB databases
RafaelGoulartB/nodejs-ecommerce
🌀 MVC - E-commerce project made with Express and Mysql
LazZiya/XLocalizer
Localizer package for Asp.Net Core web applications, powered by online translation and auto resource creating.
campaignmonitor/createsend-dotnet
A .NET library for the Campaign Monitor API
MustafaBKLZ/mustafabukulmez_com_dersler
Kişisel web sitemde yayınladığım C# derslerini içeren bir projedir. Tüm dersleri içermemekle birlikte 12.11.2018 tarihinden sonra eklediğim ve bu projeye eklenmesini mantıklı bulduğum dersleri bu proje içerisine almaya çalışacağım.
rebeccapowell/csharp-algorithm-coupon-code
Implementation of Perl's Algorithm::CouponCode in C# - https://www.nuget.org/packages/Powell.CouponCode/
ilkeryilmazz/RentACar
Wolfterro/django-simple-coupons
A Django app that makes the use of coupons a simple task!
gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR
iamburakcoskun/aspnet-core-jwt-authentication-api
ASP.NET Core 2.2 JWT Authentication API
ErikPelli/McTazze
C# program that add random coffee receipt codes to McDonald's fidelity cups account
rodrigues-t/coupon-api
Coupon generator API. Create and manage discount coupons for your customers.
spryker/discount
[READ ONLY] Subtree split of the Discount module.
TayfunF/NTierArchitect
Katmanlı Mimari İnşaa Aşaması
aycakdemr/ErpProjectDemo-backend
fareed-mohammed/Pricing-Calculator
C# Pricing Calculator application for a Shopping Basket
enesusanmaz/hepsiburadaexample
Code Assignment You work in an e-commerce platform as a software engineer. A new campaign module which manipulates prices according to demand, is brought to you as an important business requirement. ● You have products, orders and campaigns in your domain. ● You create a product with product code, price and stock. ● You create an order with product code and quantity. Price can be assumed the current price of product at that moment. ● You create a campaign with a name, a product code, duration, price manipulation limit and target sales count. ○ Campaign starts after creating and ends after given duration. ○ Duration is given in hours. ○ A price manipulation limit is the maximum percentage that you can increase or decrease the price of product according to demand. ○ Target sales count is the product quantity you want to sell during the campaign. ● You will simulate time in your system. Time will start with 00:00 and it will be increased by you in any amount of hour. ● You are free to design your algorithm for how to calculate demand and how to increase and decrease the price during the campaign. You will have scenario files in the context of this assignment (Sample scenario files are sent you along with this assignment document. Please use them to see if your program is running as expected). ● Scenario files have commands for the operations defined in business requirements. ● Your program will read scenario file and produce output for each command. ● You are free to choose the programming language (e.g. C#, Java, C++, Go) The table given below defines all commands which should be recognized by your system. Command What it does create_product PRODUCTCODE PRICE STOCK Creates product in your system with given product information. get_product_info PRODUCTCODE Prints product information for given product code. create_order PRODUCTCODE QUANTITY Creates order in your system with given information. create_campaign NAME PRODUCTCODE DURATION PMLIMIT TARGETSALESCOUNT Creates campaign in your system with given information get_campaign_info NAME Prints campaign information for given campaign name increase_time HOUR Increases time in your system. The table given below shows sample input and outputs for all possible commands in your system (Given outputs assumes commands are executed successfully) Command Sample Output create_product P1 100 1000 Product created; code P1, price 100, stock 1000 get_product_info P1 Product P1 info; price 100, stock 1000 create_order P1 3 Order created; product P1, quantity 3 create_campaign C1 P1 10 20 100 Campaign created; name C1, product P1, duration 10, limit 20, target sales count 100 get_campaign_info C1 Campaign C1 info; Status Active, Target Sales 100, Total Sales 50, Turnover 5000, Average Item Price 100 increase_time 1 Time is 01:00 The last table shows steps in an example scenario file and their outputs (Price changing strategy in this example follows a linear pattern, you do not have to implement exactly same pattern.) Steps in Example Input File Output create_product P1 100 1000 Product created; code P1, price 100, stock 1000 create_campaign C1 P1 5 20 100 Campaign created; name C1, product P1, duration 10, limit 20, target sales count 100 get_product_info P1 Product P1 info; price 100, stock 1000 increase_time 1 Time is 01:00 get_product_info P1 Product P1 info; price 95, stock 1000 increase_time 1 Time is 02:00 get_product_info P1 Product P1 info; price 90, stock 1000 increase_time 1 Time is 03:00 get_product_info P1 Product P1 info; price 85, stock 1000 increase_time 1 Time is 04:00 get_product_info P1 Product P1 info; price 80, stock 1000 increase_time 2 Time is 06:00 get_product_info P1 Product P1 info; price 100, stock 1000 get_campaign_info C1 Campaign C1 info; Status Ended, Target Sales 100, Total Sales 0, Turnover 0, Average Item Price – Following criterias will be considered during the evaluation of the code assignment: ● Code should run as expected. ● Code Quality (Clean Code, SOLID, Applying Patterns “if necessary”, and other Software Craftsmanship techniques) ● Readability ● Unit testing. TDD approach will be favored. ● Packaging (how easy it is to run the code) ● Domain Modeling You have 5 days to fulfill the assignment. Plz, keep in touch with us regarding to any enquiries w/ the assignment => mplisting@hepsiburada.com Good luck :)
Laixer/MaxiMiz
Online Ad campaign management
halityurttas/SmartBazaar
A pretty simple E-Commerce solution from C#
ofke-yazilim/opencart-customer-discount-module
This extension provide that you can define discount rate for opencart Customer Groups.