string NombreDeFoto { get; set; }
int CantidadDeFotos { get; set; }
void ObtenerCoordenadas();
public class Celulares : ICamara, IGps
public string NombreDeFoto { get; set; }
public int CantidadDeFotos { get; set; }
throw new NotImplementedException();
public void MostrarAppCamara()
Console.WriteLine("Mostrando App de Camara en Celular");
public void ObtenerCoordenadas()
Console.WriteLine("Las Coordenadas son: 48o 51’ 30.2328’’N, 2o 17’ 40.1388’’E");
public void TomarFotografia()
throw new NotImplementedException();
public static void Main()
Celulares cel = new Celulares();
cel.ObtenerCoordenadas();