Project files for the Acumatica Import for United Rentals
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 3 години
1234567891011121314151617
  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. }