public Sucursal(string json) { DataContractJsonSerializer serializador = new DataContractJsonSerializer(typeof(Sucursal)); MemoryStream stream = new MemoryStream(Encoding.UTF8.GetBytes(json)); Negocio.Sucursal suc = (Sucursal)serializador.ReadObject(stream); this.Latitud = suc.Latitud; this.Longitud = suc.Longitud; this.Direccion = suc.Direccion; this.Email = suc.Email; this.IdComuna = suc.IdComuna; this.IdRegion = suc.IdRegion; this.IdRetail = suc.IdRetail; this.IdSucursal = suc.IdSucursal; this.Nombre = suc.Nombre; this.RazonSocial = suc.RazonSocial; this.Rut = suc.Rut; this.Telefono = suc.Telefono; this.Selec = suc.Selec; }
public string LeerSucursalId(int idSuc) { Negocio.Sucursal suc = new Negocio.Sucursal(); return(suc.LeerSucursalId(idSuc)); }
public bool EliminarSucursal(string json) { Negocio.Sucursal su = new Negocio.Sucursal(json); return(su.CrearSucursal()); }
public bool ActualizarSucursal(string json) { Negocio.Sucursal su = new Negocio.Sucursal(json); return(su.ActualizarSucursal()); }