Example #1
0
 public static CompanyManager GetInstance(ApplicationDbContext context)
 {
     if (manager == null)
     {
         manager = new CompanyManager(context);
     }
     return(manager);
 }
Example #2
0
 public void Dispose()
 {
     manager = null;
 }