Advertisement
taisonik

Untitled

Jul 17th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.51 KB | None | 0 0
  1. public class EmpleadoInfo:IInformacionEmpleado
  2. {
  3. public Empleado ObtenerEmpleado(int idEmpleado)
  4. {
  5.  
  6. }
  7. private List<Empleado> ObtenerListaEmpleados(){
  8. return new List<Empleado>{
  9. new Empleado{ idEmpleado=1, nombre="Juan", apellido="Pérez", direccion="Av. Amazonas", tipoSangre="AB"},
  10. new Empleado{ idEmpleado=2, nombre="Alberto", apellido="Sánchez", direccion="Av. Río Coca", tipoSangre="B"},
  11. new Empleado{ idEmpleado=3, nombre="Elizabeth", apellido="Herrera", direccion="Av. los Shyris", tipoSangre="AB"},};
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement