Skip to content

Instantly share code, notes, and snippets.

@fnmssteam
fnmssteam / ShoppingCart.cs
Created February 19, 2025 01:38
DeepSeek Online Store Checkout System Challenge
using DeepSeekTestExercise.Contracts;
using DeepSeekTestExercise.Entities;
using DeepSeekTestExercise.Events;
using DeepSeekTestExercise.Exceptions;
namespace DeepSeekTestExercise.Services;
public class ShoppingCart
{
private readonly IPaymentGateway _paymentGateway;
@fnmssteam
fnmssteam / 20250218030641_InitialCreate
Created February 18, 2025 06:51
DeepSeek EF Core API Exercise
using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace DeepSeekApiCore.Migrations
{
/// <inheritdoc />
public partial class InitialCreate : Migration
{
@fnmssteam
fnmssteam / 20250217082008_InitialCreate
Last active February 17, 2025 09:58
DeepSeek EF Core Challenge
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace DeepSeekCore.Migrations
{
/// <inheritdoc />
public partial class InitialCreate : Migration
{
/// <inheritdoc />
@fnmssteam
fnmssteam / OrderProcessor.cs
Created February 12, 2025 10:06
DeepSeek 2nd xUnit Challenge Solution
using DeepSeekChallenge.Contracts;
using DeepSeekChallenge.Entities;
using DeepSeekChallenge.Exceptions;
namespace DeepSeekChallenge.Services;
public class OrderProcessor
{
private readonly IInventoryService _inventory;
private readonly IPaymentGateway _paymentGateway;