public UnitOfWork(IDataContextAsync context)
 {
     _context = (FaceDetectionContext)context;
 }
 public UnitOfWork(string nameOrConnectionString)
 {
     _context = new FaceDetectionContext(nameOrConnectionString);
 }