public void Initializar() { _db = new BancoContext(); _listCuentaBancaria = new List <CuentaBancaria>() { new CuentaAhorro() { Id = 1, Numero = "524255", Nombre = "Cuenta 1" }, new CuentaCorriente() { Id = 2, Numero = "524256", Nombre = "Cuenta 2" }, }; _db.Set <CuentaBancaria>().AddRange(_listCuentaBancaria); _db.SaveChanges(); _repositoryCuentaBancaria = new CuentaBancariaRepository(_db); _unitOfWork = new UnitOfWork(_db); }
public void Initialize() { _mockContext = new Mock <IDbContext>(); _unitOfWork = new UnitOfWork(_mockContext.Object); _mockSetCuentaBancaria = new Mock <DbSet <CuentaBancaria> >(); _listCuentaBancaria = new List <CuentaBancaria>() { new CuentaAhorro() { Id = 1, Numero = "524255", Nombre = "Cuenta 1" }, new CuentaCorriente() { Id = 2, Numero = "524256", Nombre = "Cuenta 2" }, }; _mockSetCuentaBancaria.SetSource(_listCuentaBancaria); _mockContext.Setup(c => c.Set <CuentaBancaria>()).Returns(_mockSetCuentaBancaria.Object); _repositoryCuentaBancaria = new CuentaBancariaRepository(_mockContext.Object); }
public TrasladarService(IUnitOfWork unitOfWork, ICuentaBancariaRepository cuentaBancariaRepository) { _unitOfWork = unitOfWork; _cuentaBancariaRepository = cuentaBancariaRepository; }
public CrearCuentaBancariaService(IUnitOfWork unitOfWork, ICuentaBancariaRepository cuentaBancariaRepository) { _unitOfWork = unitOfWork; _cuentaBancariaRepository = cuentaBancariaRepository; }