public static void CreaNuevaFra(CabeceraFras fra) { IVANNEntities db = new IVANNEntities(); try { db.CabeceraFras.Add(fra); db.SaveChanges(); } catch { } }
public List <Pacientes> GetALLPacientes() { Pacientes paciente = new Pacientes(); List <Pacientes> pacientes = new List <Pacientes>(); IVANNEntities db = new IVANNEntities(); var res = db.spGet_All_Pacientes(); foreach (var item in res) { paciente.IDPACIENTE = item.IDPACIENTE; paciente.ORDEN = item.ORDEN; paciente.NOMBRE_Y_APELLIDOS = item.NOMBRE_Y_APELLIDOS; paciente.DNI = item.DNI; paciente.CUENTA_BANCO = item.CUENTA_BANCO; pacientes.Add(paciente); paciente = new Pacientes(); } return(pacientes); }
public List <CabeceraFras> GetFrasByIDPACIENTE(int idpaciente) { CabeceraFras factura = new CabeceraFras(); List <CabeceraFras> facturas = new List <CabeceraFras>(); IVANNEntities db = new IVANNEntities(); var res = db.spGetFrasIDPaciente(idpaciente); foreach (var item in res) { factura.IDLINEAFRA = item.IDLINEAFRA; factura.IDPACIENTE = item.IDPACIENTE; factura.DNI = item.DNI; factura.FECHA = item.FECHA; factura.Nº_FACTURA = item.Nº_FACTURA; factura.NOMBRE_Y_APELLIDOS = item.NOMBRE_Y_APELLIDOS; factura.TOTAL = item.TOTAL; facturas.Add(factura); factura = new CabeceraFras(); } return(facturas); }