public void GetPrestamosTest()
        {
            List <Prestamos> lista = new List <Prestamos>();

            lista = PrestamosBLL.GetPrestamo();
            Assert.IsNotNull(lista);
        }
Beispiel #2
0
        public Moras()
        {
            InitializeComponent();
            this.DataContext = moras;

            PrestamoIdDetalleComboBox.ItemsSource       = PrestamosBLL.GetPrestamo();
            PrestamoIdDetalleComboBox.SelectedValuePath = "PrestamoId";
            PrestamoIdDetalleComboBox.DisplayMemberPath = "Concepto";
        }
Beispiel #3
0
 public ActionResult <List <Prestamos> > Get(int id)
 {
     return(PrestamosBLL.GetPrestamo());
 }
Beispiel #4
0
        public void GetListTest()
        {
            var listaPrestamos = PrestamosBLL.GetPrestamo();

            Assert.IsNotNull(listaPrestamos, "Error al obtener lista");
        }
Beispiel #5
0
 public ActionResult <List <PrestamosApp.Models.Prestamos> > Get()
 {
     return(PrestamosBLL.GetPrestamo());
 }