Skip to content

Instantly share code, notes, and snippets.

View jstadnicki's full-sized avatar
🏠
Working from home

jstadnicki jstadnicki

🏠
Working from home
View GitHub Profile
public class Basket
{
public List<Item> Items { get; set; }
public decimal TotalPrice { get; set; }
public Basket()
{
this.Items = new List<Item>();
this.TotalPrice = 0m;
}
version: "3.9"
services:
front:
depends_on:
- "mssql"
- "rabbit"
build:
context: .
dockerfile: ./Front/Dockerfile
environment: