예제 #1
0
 public void Delete()
 {
     if (Find(this.IdVendedor))
     {
         ListaVendedores.Remove(this);
         GestionArchivo gs = new GestionArchivo(pathID);
         gs.Save(IdVendedor.ToString());
     }
 }
예제 #2
0
 public void Delete()
 {
     if (Find(this.IdCliente))
     {
         ListaClientes.Remove(this);
         GestionArchivo gs = new GestionArchivo(pathID);
         gs.Save(IdCliente.ToString());
     }
 }
예제 #3
0
 public void Delete()//Here
 {
     if (Find(this.CedulaVendedor))
     {
         ListaUsers.Remove(this);
         GestionArchivo gs = new GestionArchivo(path);
         gs.Save(CedulaVendedor.ToString());
     }
 }
예제 #4
0
 public void Delete()
 {
     if (Find(this.IdFactura))
     {
         ListaFactura.Remove(this);
         GestionArchivo gs = new GestionArchivo(pathID);
         gs.Save(IdFactura.ToString());
     }
 }
예제 #5
0
        public void Save()
        {
            GestionArchivo gs = new GestionArchivo(path);

            gs.Save(this.GetLine());
        }