SlideShare a Scribd company logo
Vertical slice architecture
https://www.net-baires.com.ar/JoinSlack
https://www.meetup.com/es-ES/Net-Baires
https://www.net-baires.com.ar
@NetBaires
11 de Abril
09:00 – 13:00
Microsoft
Lanzamiento de Visual Studio 2019 en Argentina
Global Azure Bootcamp 2019 - Buenos Aires
27 de Abril
08:30 – 18:30
Microsoft
http://bit.ly/gabba19
http://bit.ly/cfs-gabba19
Vertical Slice
Architecture
Germán Küber
CloudX
Software Architect
>_
Arquitectura Tradicional N-Capas
UI
Lógica de Negocios
Acceso a Datos
Base de datos
¿ Como organizamos nuestras capas?
• User.cs
• UserController.cs
• UserService.cs
• UserRepository.cs
Arquitectura N capas Asp.Net
1
2
3
4
5
6
7
8
9
10
11
12
Arquitectura N-Capas
UI
BL
DAL
DB
public interface IPostsRepository : IBaseRespository
{
Task<Post> CreateAsync(Post newPost);
bool PostExistById(int id);
Task<Post> GetById(int id);
Task<List<Post>> GetAllByCommentIdAsync(int comment);
Task<List<Post>> GetAllByDataIdAsync(DateTime date);
Task<List<Post>> GetAllByCoordinatorIdAsync(int commentId, List<string> categories);
Task<Post> GetByIdAsync(int id);
Task<Post> GetByIdForDraftAsync(int id);
Task<List<Post>> GetAllByProviderIdAsync(int providerId);
Task<List<Post>> GetAllWithProvidersAsync();
Task<Post> GetByCommentDraftIdAsync(int idPost);
Task<Post> GetByIdAndProviderIdAsync(int idProvider, int idPost);
Task<Post> GetByIdWithQuestionAsync(int postId);
Task<Post> GetByIdWithQuestionDraftAsync(int postId);
Task<Post> GetByProviderIdWithQuestionAsync(int postId, int providerId);
Task<Post> GetSoftByIdAsync(int id);
Task<Post> GetByIdWithMilestonesAsync(int idPost);
Task<Post> GetByIdWithCommentMessageAsync(int id);
Task<Post> GetByIdAndProviderIdWithCommentMessageAsync(int postId, int providerId);
Task<Post> GetByIdWithProviderPostsAsync(int id);
Task<Post> GetByIdAndQuestionIdWithQuestionAsync(int postId, int questionId);
Task<List<Post>> GetAsync();
Task<List<Post>> FilterPosts(Filter filter);
}
Vertical Slice Architecture
Vertical Slice Architecture
De métodos a Clases
void BlockUser()
void AcceptUser()
void CreateUser()
UsersServices
BlockUser { }
AcceptUser { }
CreateUser { }
Modelo de Requests
Input
Request
Handler
Output
Comandos y Queries
Web
App
GET
Query
POST
Command
Query Handler Response
Command Handler Response
Idempotente
No Idempotente
Encapsulamiento
Request Response
Encapsulamiento
Request
Handler
Response
Domain
Vertical slice architecture
¿Por que Vertical Slice Architecture?
• Código sencillo
• Código fácil de probar
• Separación de tests
• Aplicación fácil de dividir
Vertical slice architecture
Gracias!!!
Germankuber
http://germankuber.com.ar
Link
http://www.germankuber.com.ar/
vertical-slice-architecture

More Related Content

PDF
Azure 300
PDF
Sidecar patterns in modern infrastructure
PPTX
Adform Cloud Infrastructure
PPTX
Understanding the Intelligent Cloud
PPTX
Microsoft Azure News - 2018 May
PPTX
Cloud Lunch and Learn - Sobrevoando o Azure
PPTX
Understanding The Azure Platform March 2010
PPTX
Cloud computing and the Windows Azure Services Platform (KU Leuven)
Azure 300
Sidecar patterns in modern infrastructure
Adform Cloud Infrastructure
Understanding the Intelligent Cloud
Microsoft Azure News - 2018 May
Cloud Lunch and Learn - Sobrevoando o Azure
Understanding The Azure Platform March 2010
Cloud computing and the Windows Azure Services Platform (KU Leuven)

Similar to Vertical slice architecture (20)

PPTX
Microsoft Dynamics 365 Business Central
PPTX
DevHangout Microsoft Azure como Infraestructura para emprendedores de Tecnolo...
DOCX
Week1SP800-145 NIST Cloud Definitionhttpnvlpubs.nist.govni.docx
PPTX
Microsoft Azure News - July 2021
PPTX
SQLArgentina - Data Platform Summit BA - Keynote
PPTX
Cloud computing: highlights
PDF
Azure Meetup: Novità CosmosDB modalità Serverless e Cognitive Services
PPTX
Microsoft Azure News - June 2021
PPTX
Microsoft Azure News - October 2020
PPTX
Employee Info Starter Kit
PPTX
An Introduction to the Microsoft Cloud
PPT
Building Cloud-Native Applications with Microsoft Windows Azure
PPTX
Beer City Code 2024 - Configurable Cloud Native Applications with .NET Aspire
PPTX
Microsoft Azure News - November 2021
PDF
Microsoft Azure Websites Webjobs
PPTX
Microsoft education for it professionals
PPTX
Real World Azure - Dev
PDF
Codemotion Rome 2015 IBM Bluemix and Docker
PPTX
Ordina SOFTC Presentation - UsingGeoData_ReportBuilder
DOCX
Azure Administration.docx
Microsoft Dynamics 365 Business Central
DevHangout Microsoft Azure como Infraestructura para emprendedores de Tecnolo...
Week1SP800-145 NIST Cloud Definitionhttpnvlpubs.nist.govni.docx
Microsoft Azure News - July 2021
SQLArgentina - Data Platform Summit BA - Keynote
Cloud computing: highlights
Azure Meetup: Novità CosmosDB modalità Serverless e Cognitive Services
Microsoft Azure News - June 2021
Microsoft Azure News - October 2020
Employee Info Starter Kit
An Introduction to the Microsoft Cloud
Building Cloud-Native Applications with Microsoft Windows Azure
Beer City Code 2024 - Configurable Cloud Native Applications with .NET Aspire
Microsoft Azure News - November 2021
Microsoft Azure Websites Webjobs
Microsoft education for it professionals
Real World Azure - Dev
Codemotion Rome 2015 IBM Bluemix and Docker
Ordina SOFTC Presentation - UsingGeoData_ReportBuilder
Azure Administration.docx
Ad

More from Germán Küber (20)

PPTX
Explorando el Diseño de la Memoria en Rust
PPTX
De Código a Ejecución: El Papel Fundamental del MSIL en .NET
PPTX
Mev Rapido.pptx
PPTX
Que son los smart contracts.pptx
PPTX
De 0 a blockchain developer en 3 meses
PPTX
Patrones funcionales
PPTX
Patrones de diseño en solidity
PPTX
Vertical slice architecture
PPTX
De 0 a blockchain developer en 3 meses
PPTX
Diamon pattern presentation
PPTX
Patrones funcionales
PPTX
Defensive code
PPTX
Programación Funcional C#
PPTX
Unit testing consejos
PPTX
Defensive code C#
PPTX
Event sourcing
PPTX
C sharp 8
PPTX
Arquitectura en aplicaciones Angular y buenas practicas.
PPTX
Un mundo sin if. generics al rescate
PPTX
Azure 360º para Desarrolaldores
Explorando el Diseño de la Memoria en Rust
De Código a Ejecución: El Papel Fundamental del MSIL en .NET
Mev Rapido.pptx
Que son los smart contracts.pptx
De 0 a blockchain developer en 3 meses
Patrones funcionales
Patrones de diseño en solidity
Vertical slice architecture
De 0 a blockchain developer en 3 meses
Diamon pattern presentation
Patrones funcionales
Defensive code
Programación Funcional C#
Unit testing consejos
Defensive code C#
Event sourcing
C sharp 8
Arquitectura en aplicaciones Angular y buenas practicas.
Un mundo sin if. generics al rescate
Azure 360º para Desarrolaldores
Ad

Recently uploaded (20)

PDF
Nekopoi APK 2025 free lastest update
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PPTX
history of c programming in notes for students .pptx
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
System and Network Administraation Chapter 3
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PPTX
Introduction to Artificial Intelligence
PDF
PTS Company Brochure 2025 (1).pdf.......
PPTX
Essential Infomation Tech presentation.pptx
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PPTX
Odoo POS Development Services by CandidRoot Solutions
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
Nekopoi APK 2025 free lastest update
wealthsignaloriginal-com-DS-text-... (1).pdf
history of c programming in notes for students .pptx
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
2025 Textile ERP Trends: SAP, Odoo & Oracle
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
System and Network Administraation Chapter 3
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Introduction to Artificial Intelligence
PTS Company Brochure 2025 (1).pdf.......
Essential Infomation Tech presentation.pptx
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Odoo POS Development Services by CandidRoot Solutions
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Reimagine Home Health with the Power of Agentic AI​
Which alternative to Crystal Reports is best for small or large businesses.pdf
How to Choose the Right IT Partner for Your Business in Malaysia
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
Upgrade and Innovation Strategies for SAP ERP Customers

Vertical slice architecture

Editor's Notes

  • #4: Azure pass 80 USD Stickers
  • #8: UserRepository: Todo el tiempo cambiamos la base de datos no?
  • #9: Tocar en diferentes lugares
  • #12: Organizada entorno a lo que debe cambiar juntos. Organiza de manera lógica todo lo que cambia junto, en un mismo lugar
  • #18: Un modelo entra un modelo sale