Project files for the Acumatica Import for United Rentals
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

17 rader
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. }