本文整理汇总了C#中IOrderRepository.SalvarPedido方法的典型用法代码示例。如果您正苦于以下问题:C# IOrderRepository.SalvarPedido方法的具体用法?C# IOrderRepository.SalvarPedido怎么用?C# IOrderRepository.SalvarPedido使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IOrderRepository
的用法示例。
在下文中一共展示了IOrderRepository.SalvarPedido方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AoAcessarACamadaDeAcessoADadosParaExcluirUmLivroNaoExistente_OMetodoDeveRetornarFalso
public void AoAcessarACamadaDeAcessoADadosParaExcluirUmLivroNaoExistente_OMetodoDeveRetornarFalso()
{
var usuario = new User
{
District = "Centro",
CellPhone = "3188888888",
ZipCode = 30625130,
City = "Belo Horizonte",
State = "MG",
Name = "Jô Soares",
Email = "[email protected]",
Number = 456,
Address = "Afonso Pena",
Password = "123496469",
Phone = "313333333",
UserType = "Cliente"
};
using (var livrariaContext = new LivrariaTDDContext())
{
usuario = livrariaContext.Users.Add(usuario);
livrariaContext.SaveChanges();
}
var pedido = new Order
{
User = usuario,
PaymentType = null,
Products = new List<Product> { null, null },
OrderValue = 0M,
FreightValue = 10.00M,
TotalValue = 0M + 10.00M
};
const int userId = -34;
var listaIdProducts = new List<int> { -15, -10 };
const int formaPagamentoId = -5;
using (var auxContext = new LivrariaTDDContext())
{
var countAntes = auxContext.Orders.Count();
Assert.AreEqual(0, countAntes);
}
using (var livrariaContext = new LivrariaTDDContext())
{
_repository = new PedidoRepository(livrariaContext);
var result = _repository.SalvarPedido(pedido, userId, listaIdProducts, formaPagamentoId);
Assert.False(result);
}
using (var auxContext = new LivrariaTDDContext())
{
var countDepois = auxContext.Orders.Count();
Assert.AreEqual(0, countDepois);
}
}
示例2: AoAcessarACamadaDeAcessoADadosParaSalvarUmaCompra_ACompraDeSerSalvaEOMetodoDeveRetornarVerdadeiro
public void AoAcessarACamadaDeAcessoADadosParaSalvarUmaCompra_ACompraDeSerSalvaEOMetodoDeveRetornarVerdadeiro()
{
var novoLivro1 = new Product
{
Name = "Torre Negra",
Author = "Stephen King",
Publishing = "Universal",
Year = 1995,
Category = Categories.LiteraturaEstrangeira,
Stock = 5,
Price = 150.0M,
Photo = "",
Status = ProductStatus.Active
};
var novoLivro2 = new Product
{
Name = "Torre Negra Segunda edição",
Author = "Stephen King",
Publishing = "Universal",
Year = 1998,
Category = Categories.LiteraturaEstrangeira,
Stock = 8,
Price = 170.0M,
Photo = "",
Status = ProductStatus.Active
};
var formaPagamento = new PaymentType
{
PaymentTypeName = "Boleto Bancário",
Icon = ""
};
var usuario = new User
{
District = "Centro",
CellPhone = "3188888888",
ZipCode = 30625130,
City = "Belo Horizonte",
State = "MG",
Name = "Jô Soares",
Email = "[email protected]",
Number = 456,
Address = "Afonso Pena",
Password = "123496469",
Phone = "313333333",
UserType = "Cliente"
};
using (var livrariaContext = new LivrariaTDDContext())
{
novoLivro1 = livrariaContext.Products.Add(novoLivro1);
novoLivro2 = livrariaContext.Products.Add(novoLivro2);
formaPagamento = livrariaContext.PaymentTypes.Add(formaPagamento);
usuario = livrariaContext.Users.Add(usuario);
livrariaContext.SaveChanges();
}
var pedido = new Order
{
User = usuario,
PaymentType = formaPagamento,
Products = new List<Product> {novoLivro1, novoLivro2},
OrderValue = novoLivro1.Price + novoLivro2.Price,
FreightValue = 10.00M,
TotalValue = novoLivro1.Price + novoLivro2.Price + 10.00M
};
int userId = usuario.UserId;
var listaIdProducts = new List<int>{ novoLivro1.ProductId, novoLivro2.ProductId };
int formaPagamentoId = formaPagamento.PaymentTypeId;
using (var auxContext = new LivrariaTDDContext())
{
var countAntes = auxContext.Orders.Count();
Assert.AreEqual(0, countAntes);
}
using (var livrariaContext = new LivrariaTDDContext())
{
_repository = new PedidoRepository(livrariaContext);
var result = _repository.SalvarPedido(pedido, userId, listaIdProducts, formaPagamentoId);
Assert.True(result);
}
using (var auxContext = new LivrariaTDDContext())
{
var countDepois = auxContext.Orders.Count();
Assert.AreEqual(1, countDepois);
}
}