Пример #1
0
 public static BDATCEntities getContext()
 {
     if (context == null)
     {
         context = new BDATCEntities();
     }
     return(context);
 }
Пример #2
0
 public AplEnvioAtividade()
 {
     context = DbConection.getContext();
     db      = new GenericDALImpl <ARQUIVO>();
 }
Пример #3
0
 public GenericDALImpl()
 {
     context = DbConection.getContext();
     _dbSet  = context.Set <T>();
 }