public bool AlteraArquivo(string fullName) { try { _mdbservice.AlterarArquivo(fullName); return(true); } catch (Exception ex) { return(false); } }
public void UpdatePath(string file) { try { if (ValidaMDB(file)) { _mdbservice.AlterarArquivo(file); } _mdbservice.UpdatePath(file); } catch (Exception ex) { throw; } }