Project files for the Acumatica Import for United Rentals
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

17 righe
323 B

  1. using Newtonsoft.Json;
  2. using System.IO;
  3. namespace uri_import
  4. {
  5. public class JSONActions
  6. {
  7. public static Common ReadSettings(string file)
  8. {
  9. string text = File.ReadAllText(file);
  10. Common c = JsonConvert.DeserializeObject<Common>(text);
  11. return c;
  12. }
  13. }
  14. }