This repository has been archived by the owner on Apr 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from g12-4soat/feature/fake-checkout
criação de fake checkout para interface de pagamento
- Loading branch information
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/TechLanches/TechLanches.Application/IPagamentoService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
namespace TechLanches.Application; | ||
|
||
public interface IPagamentoService | ||
{ | ||
Task<bool> RealizarPagamento(int pedidoId, FormaPagamento formaPagamento, decimal valor); | ||
} | ||
|
||
public class FakeCheckoutService : IPagamentoService | ||
{ | ||
public Task<bool> RealizarPagamento(int pedidoId, FormaPagamento formaPagamento, decimal valor) | ||
{ | ||
//salvar informação de pagamento | ||
return Task.FromResult(true); | ||
} | ||
} | ||
|
||
public enum FormaPagamento | ||
{ | ||
QrCodeMercadoPago | ||
} |