Beispiel #1
0
 public JsonSerializationContractResolver()
 {
     dictionary = new ReflectionDictionary();
     dictionary.GetDataStoreSchema(new Type[] {
         typeof(Employee)
     });
 }
 public JsonResolver()
 {
     dictionary = new ReflectionDictionary();
     dictionary.GetDataStoreSchema(
         typeof(Employee)
         , typeof(Departments)
         );
 }
Beispiel #3
0
 public DxSampleModelJsonSerializationContractResolver()
 {
     dictionary = new ReflectionDictionary();
     dictionary.GetDataStoreSchema(new Type[]
     {
         typeof(Task),
         typeof(EventLog)
     });
 }
Beispiel #4
0
 public sistemafacturaJsonSerializationContractResolver()
 {
     dictionary = new ReflectionDictionary();
     dictionary.GetDataStoreSchema(new Type[] {
         typeof(Cat_ProductosServicios),
         typeof(CFDIs),
         typeof(Empresas),
         typeof(Plantilla),
         typeof(Series),
         typeof(Status),
         typeof(Usuarios),
         typeof(Clientes)
     });
 }
Beispiel #5
0
 public TimetableJsonSerializationContractResolver()
 {
     dictionary = new ReflectionDictionary();
     dictionary.GetDataStoreSchema(new Type[] {
         typeof(P__EFMigrationsHistory),
         typeof(AppConfigs),
         typeof(AppRoleClaims),
         typeof(AppRoles),
         typeof(AppUserClaims),
         typeof(AppUserLogins),
         typeof(AppUserRoles),
         typeof(AppUsers),
         typeof(AppUserTokens),
         typeof(Works)
     });
 }
Beispiel #6
0
 public SampleJsonSerializationContractResolver()
 {
     dictionary = new ReflectionDictionary();
     dictionary.GetDataStoreSchema(typeof(Customer), typeof(Order));
 }
 public DxSampleModelJsonSerializationContractResolver()
 {
     dictionary = new ReflectionDictionary();
     dictionary.GetDataStoreSchema(ConnectionHelper.GetPersistentTypes());
 }
Beispiel #8
0
 public SampleJsonSerializationContractResolver()
 {
     dictionary = new ReflectionDictionary();
     dictionary.GetDataStoreSchema(typeof(AuditorTitle));
 }